$(document).ready(function(){
		$(".topnav li").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads			

		$(".topnav li").hover(function(){
			$(this).fadeTo("slow", 1.0); // This should set the opacity to 60% on hover
			},function(){
				$(this).fadeTo("slow", 0.6); // This should set the opacity back to 100% on mouseout
			});
			
		$(".imgbox").hover(function(){
			$(this).fadeTo("fast", 0.5); // This should set the opacity to 100% on hover
			},function(){
				$(this).fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
			});

	$(".header a h2").hover(function(){
			$(this).fadeTo("slow", 0.5); // This should set the opacity to 100% on hover
			},function(){
				$(this).fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
			});
	});

	document.write("<style>body {display:none;}</style>");
		$(document).ready(function(){
			$(document).ready(function () {
				$('body').fadeIn(800);
			});
		});