
$(document).ready(function(){
	$('#last_wrapper').hover(function(){
		$('#last_project_hover').stop(true, true).fadeOut();
	}, function(){
		$('#last_project_hover').stop(true, true).fadeIn();
	});
});
