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