$(window).bind("unload");
$(document).ready(function()
{
	//$( 'div.vanish' ).fadeIn("slow", 0.0);
	//$( 'div.vanish' ).fadeIn("slow", 1.0);
	$('a.fadeOut').click(function(){
		$('div.vanish').fadeOut();
		setTimeout("nav('"+this.href+"')",1000);
		return false;
	});
});

function nav(href){
	location.href=href;
};
