// JavaScript Document

$(document).ready(function() {
	
	$("body").css("display", "none");
	
	//$(".content").css('display', 'none');
	$("body").fadeIn(900);
	
	
	//$(".content").slideDown(800);

	$("a.trans").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
	//$(".content").slideUp(300);	

	$("body").fadeOut(800, redirectPage);
	
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
});
