document.write('<style type="text/css">#fade { background-color:#F2F2F2; -moz-opacity: 0; opacity: 0; filter:Alpha(opacity=0); height:100%; width:100% !important; width:96%; } <\/style>');

window.defaultStatus = "ITD - Hauser";

window.addEventListener?window.addEventListener("load",fade,false):window.attachEvent("onload",fade);

function fade() {
	document.getElementById("content").style.backgroundImage = "url(bilder/lade.gif)";
	opacity = 0;
	fade = document.getElementById("fade");
	fade_interval = window.setInterval('dofade()',50);
}

function dofade() {
	if (opacity <= 1) {
		fade.style.opacity = opacity;
		fade.style.filter = "Alpha(opacity=" + opacity * 100 + ")";
		if (opacity >= 0.2) document.getElementById("content").style.backgroundImage = "none";
		opacity = opacity + 0.1;
	} else {
		window.clearInterval(fade_interval);
	}
}


