jQuery(document).ready(function($) 
{
	$(".project-box").hover(
		function() {
			$(this).stop().animate({ backgroundColor: "#fdfdfd" }, 300);
		},
		function() {
			$(this).stop().animate({ backgroundColor: "#f7f7f7" }, 300);
		}
	);
});
