$(document).ready(function() {
	
	$(".phasser").css("display","none");
	$(".phasser").fadeIn(2000);
	
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$(".phasser").fadeOut(500, redirectPage);		
	});
	
	function redirectPage() {
		window.location = linkLocation;
	}
});
