$(document).ready(function() {
	
	$("body").css("display", "none");

    $("body").fadeIn(20);
    
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(200, redirectPage);		
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}

	function displayPage() {
	$("body").fadeIn(20);
	}
	
	window.addEventListener("load", displayPage, false);
	window.addEventListener("unload", displayPage, false);
});
