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

