function initWork(){
	
	$('.work-module').hover(function(){
		$(this).attr('class', 'work-module-on');
	},function(){
		$(this).attr('class', 'work-module');
	}).click(function(){
		
		var elem = $(this);
		var url = elem.find('.project-view-more').eq(0).attr('href');
		document.location.href = url;
		
	});
	
	$('.work-module-last').hover(function(){
		$(this).attr('class', 'work-module-last-on');
	},function(){
		$(this).attr('class', 'work-module-last');
	});
	
}

$(document).ready(function(){
	initWork();
});
