jQuery(function($) {
	$(".thumbnail").css({ opacity: 0.6 }); // Sets initial opacity of thumbnails
	$(".project").hover( // Fades opacity of thumbnails
		function()
		{
			$(this).children(".thumbnail").fadeTo( 150, 1.0 );
		},
		function()
		{
			$(this).children(".thumbnail").fadeTo( "fast", 0.6 );
		}
	);
});
