	$(document).ready(function() { 
		$("#center").center(true);
		
		$(".fade").css("display", "none");

		$(".fade").fadeIn(1000);

		$(".navigation-item span a").click(function(event){
			event.preventDefault();
			linkLocation = this.href;
			$(".transition").fadeOut(1000, redirectPage);
		});

		function redirectPage() {
			window.location = linkLocation;
		}
		
	});  

	Cufon.replace('.replace p,.#content-alpha li,h2,h3,h4,#content-alpha p,.navigation-item .replace, label', {
		hover: true,
		hoverables: { a: true }
	});		
	
