jQuery(function($) {
	$("#title").fadeTo( "fast", 0.6);
	$("#title").hover(
		function()
		{
			$(this).fadeTo( "fast", 1.0 );
		},
		function()
		{
			$(this).fadeTo( "fast", 0.6 );
		}
	);
	

	$(".details").slideUp( "fast");
	$(".project").hover(
		function()
		{
			$(this).children(".thumbnail").fadeTo( "fast", 0.6 );
			$(this).children(".details").slideDown( "fast");
		},
		function()
		{
			$(this).children(".thumbnail").fadeTo( "fast", 1.0 );
			$(this).children(".details").slideUp( "fast" );
		}
	);
});
