$(document).ready(function() {
	$("a").click(function(event) {
		event.preventDefault();
		$("body").hide("slow");
		document.location = this.href;
	})
})