var div_splash = document.createElement("div");div_splash.id = "splash_screen";var body = document.getElementsByTagName("body")[0];body.style.overflow = "hidden";body.appendChild(div_splash);var splash_timer = window.setTimeout("splash_fade()", 2000);			function splash_fade(){	$("splash_screen").fade();	var body = document.getElementsByTagName("body")[0];	var splash_timer2 = window.setTimeout("body.style.overflow = 'auto'", 1000);				}
