$(document).ready(function(){
		function displayPage(){
   			$("body").delay(250).animate({opacity: 1}, 400);
		}
		
		window.addEventListener("load", displayPage, false);
		window.addEventListener("unload", displayPage, false);
 
    		$("a.transition").click(function(event){
        		event.preventDefault();
       			linkLocation = this.href;
       			$("body").animate({opacity: 0}, 1000, redirectPage);
   			});
 
    		function redirectPage() {
       			window.location = linkLocation;
    		}
		});
