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