$(document).ready(function(){
	$("#pagenav a").click(function(event){
		event.preventDefault();
		url = this.href;
		$("#credits").slideDown("slow");
		$("#main").hide(1500,redirect);
		function redirect(){ document.location = url;}
	});
})
