jQuery(document).ready(function() {
	
	jQuery("body").css("display", "none");
	jQuery("body").css("background-color", "black");

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

