 activename = "";
 zahl = 0;
 oneis_active = 0;
 background_set = 0;
 function DrawMenu(name, where, img)
 {
 	if (oneis_active == 1)
	{
		HideMenu();
	}
	
	if (background_set == 0)
	{
		document.getElementById('img01').style.backgroundImage  = 'URL(startseite/'+where+'/'+img+'/startimage1.jpg)';
		document.getElementById('img02').style.backgroundImage  = 'URL(startseite/'+where+'/'+img+'/startimage2.jpg)';
		document.getElementById('img03').style.backgroundImage  = 'URL(startseite/'+where+'/'+img+'/startimage3.jpg)';
		document.getElementById('img04').style.backgroundImage  = 'URL(startseite/'+where+'/'+img+'/startimage4.jpg)';
		background_set = 1;
	}
	activename = name;
		
	document.getElementById(name).style.visibility = 'visible';
	oneis_active = 1;
 }

 function HideMenu()
 {
	document.getElementById('img01').style.backgroundImage  = 'URL(images/startimage01-1.jpg)';
	document.getElementById('img02').style.backgroundImage  = 'URL(images/startimage01-2.jpg)';
	document.getElementById('img03').style.backgroundImage  = 'URL(images/startimage01-3.jpg)';
	document.getElementById('img04').style.backgroundImage  = 'URL(images/startimage01-4.jpg)';
	background_set = 0;
 	document.getElementById(activename).style.visibility = 'hidden';
 	document.getElementById(activename).style.left = 0;
	document.getElementById(activename).style.top = 0;
	zahl = 0;
	closerealy = 0;	
	oneis_active = 0;
 }
 
 function UMenOk()
 {
 	closerealy = 0;
	zahl = 0;
 }
 
 function ifnothinghappencloseall()
 {
 	zahl = zahl + 1;
	if (zahl == 10)
	{
		if (closerealy == 1)
		{
		 closerealy = 0;
		 HideMenu();
		} 
	}
	else
	{
 		setTimeout('ifnothinghappencloseall()', 5);	
	}
 }
 
 function sethideme()
 {
 	zahl = 0;
	closerealy = 1;
 	ifnothinghappencloseall();
 }
 


  function openflash() {
	var url = 'flash/film.html';
	var name = 'fenster';
	var parameter = 'innerHeight=524,innerWidth=650,height=524,width=650,location=no,toolbar=no,status=no,menubar=no';
	window.open(url,name,parameter);
 }
