function formatieren()
		{
		/* Hoehe und Breite des Bildschirms*/
		/*alert(screen.width);*/
		weite=screen.width;
		hoehe=screen.height;
		availhoehe=screen.availHeight;
		/*Formatierung des Banners*/
		document.getElementById('banner').style.top = (hoehe*2.5/6)+"px"; 
		document.getElementById('banner_bild').setAttribute("width", weite); 
		document.getElementById('banner_bild').setAttribute("height", (weite*41/999)+"px");
		/*Vertikal mittig setzen*/
		//alert (availhoehe);
		hoehe_hauptrahmen_dummy = (availhoehe/2) - ((document.getElementById('banner_bild').height)/2)-277;
		document.getElementById('hauptrahmen_dummy').style.height = hoehe_hauptrahmen_dummy+"px";
		/*alert(hoehe_hauptrahmen_dummy);*/
		}
function MouseOnEffekt(bildname, weite, hoehe, main_id, id_temp_alt, id_temp_neu ){
		//alert(bildname);
		if (document.getElementById(id_temp_alt)){
			bild = document.getElementById(main_id).firstChild;
			document.getElementById(main_id).removeChild(bild);
		
			var BildName="<div id="+id_temp_neu+"><img src="+bildname+" alt='Klappstuhlfestival' width="+weite+" height="+hoehe+"></img></div>"
			var isDiv=document.getElementById(main_id);
			isDiv.innerHTML = BildName;
		}
}
function MouseOutEffekt(bildname, weite, hoehe, main_id, id_temp_alt, id_temp_neu ){
		//alert(bildname);
		if (document.getElementById(id_temp_alt)){
			bild = document.getElementById(main_id).firstChild;
			document.getElementById(main_id).removeChild(bild);
		
			var BildName="<div id="+id_temp_neu+"><img src="+bildname+" alt='Klappstuhlfestival' width="+weite+" height="+hoehe+"></img></div>"
			var isDiv=document.getElementById(main_id);
			isDiv.innerHTML = BildName;
		}
}
