$(function() {

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