$(document).ready(function(){
	
	$("div#pagewrapper").css("opacity","0");
			
	$("div#pagewrapper").delay(1000).animate({opacity:1},3000,
	
		function(){
		
			$("a").each(function(){
	
				var source = $(this).attr("href");
				
				$(this).click(function(e){
						
					e.preventDefault();
					$("div#pagewrapper").stop(true,true).animate({opacity:0},1000,
			
						function(){window.location = source;});
								
				});
			});
	});
});
