
$(document).ready(function() {
	
	function displayPage() {
		$("body").css("display", "none");
		$("body").fadeIn(1000);
		}
		
		window.addEventListener("load", displayPage, false);
		window.addEventListener("unload", displayPage, false);

	
	$("a.fade").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(500, redirectPage);		
	});
	
		
	function redirectPage() {
		window.location = linkLocation;
	}
	

	
	
	$("#menu_h").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "normal");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "normal");
	});

	$("#nav_left_h").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "normal");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "normal");
	});
	
	$("#nav_right_h").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "normal");
		},
		function() {
			$(this).stop().animate({"opacity": "1"}, "normal");
	});

	
});


