function PrepareToGoHome(URL) {
	jQuery("#logo > a").attr("href","#"+URL);
}
function GoHome(URL) {
	jQuery("body").fadeOut(1000,"swing");
	jQuery("html").css("position","relative");
	jQuery("html").animate({top:"-2000px",},1000,"swing");
	setTimeout(function(){
		window.location.replace(URL)},1000);
}

