jQuery(function($) {
	$(".projectblock").hover(
		function()
		{
			$(this).children(".thumbnail").children("img").fadeTo( "fast", 0.4 );
			$(this).children(".details").fadeTo( "fast", 1 );
		},
		function()
		{
			$(this).children(".thumbnail").children("img").fadeTo( "fast", 1.0 );
			$(this).children(".details").fadeTo( "fast", 0 );
		}
	);
});
