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