$(document).ready(function() {
	
	$("body").css("display", "none");

    $("body").fadeIn(2000);
    
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(2000, redirectPage);		
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
	$('#menu2 li').hover(function() {
		$('ul', this).css("display", "block");
	}, function() {
		$('ul', this).css("display", "none");
	});
	
});

