$(document).ready(function() {
	$("#menu a").mouseover(
		function(){
			var a=$(this);
			$(this).fadeOut(0, function(){$(this).fadeIn(400);});
		}
	);//mouseover menu a
	$("#page_text").css("display", "none");
	$("#page_text").fadeIn(300);
  $("#menu a").click(function(event){
		event.preventDefault();
		linkLocation=this.href;
		$("#page_text").fadeOut(300, redirectPage);
	}
	);//click
}//function
);//ready
		
function redirectPage() {
	window.location = linkLocation;
}
	


