
	activeMenu = 0;
	activePop = 0;
	hideTimer = 0;
	hideMainTimer = 0;
	
		
	function showMainPop(){
	//Abfrage, ob Stylesheet eingeschaltet
	if(document.bgColor == "#f9f9ea"){
	if (hideMainTimer != 0){
	clearTimeout(hideMainTimer);
	}
	document.getElementById("powernav").style.visibility="visible";
	}
	}
	
	function hideMainPop(){
	//Abfrage, ob Stylesheet eingeschaltet
	if(document.bgColor == "#f9f9ea"){
	hideMainTimer = setTimeout("hideMainPopLayer()",500);
	}
	}
	
	function hideMainPopLayer(){
	document.getElementById("powernav").style.visibility="hidden";
	clearTimeout(hideMainTimer);
	}
	
	function showPop(whichMenu,whichPop){
	//Abfrage, ob Stylesheet eingeschaltet
	if(document.bgColor == "#f9f9ea"){
	
		if(activeMenu != 0){
		document.getElementById(activeMenu).style.background = "#595900";
		}
		if(activePop != 0){
		document.getElementById(activePop).style.visibility="hidden";
		clearTimeout(hideTimer);
		}
		activeMenu = whichMenu;
		activePop = whichPop;
		menuTop = document.getElementById(whichMenu).offsetTop;
		menuRight = document.getElementById(whichMenu).offsetWidth;
		document.getElementById(whichMenu).style.background = "#F5F5DC";
		document.getElementById(whichPop).style.visibility="visible";
		document.getElementById(whichPop).style.display="block";
		document.getElementById(whichPop).style.top = menuTop + "px";
		document.getElementById(whichPop).style.left = menuRight + "px";
		}
	else{
		if(activeMenu != 0){
		//document.getElementById(activeMenu).style.background = "#fc6";
		}
		if(activePop != 0){
		document.getElementById(activePop).style.visibility="hidden";
		document.getElementById(activePop).style.display="none";
		clearTimeout(hideTimer);
		}	
		activeMenu = whichMenu;
		activePop = whichPop;
		menuTop = document.getElementById(whichMenu).offsetTop;
		menuRight = document.getElementById(whichMenu).offsetWidth;
		//document.getElementById(whichMenu).style.background = "#FF9900";
		document.getElementById(whichPop).style.position="relative";
		document.getElementById(whichPop).style.visibility="visible";
		document.getElementById(whichPop).style.display="block";
		//document.getElementById(whichPop).style.top = menuTop + "px";
		//document.getElementById(whichPop).style.left = menuRight + "px";
		}
	}
	
	function hidePop(){
	hideTimer = setTimeout("hidePopLayer()",1000);
	}
		
	function hidePopLayer(){
	//Abfrage, ob Stylesheet eingeschaltet
	if(document.bgColor == "#ffdca1"){
		document.getElementById(activeMenu).style.background = "#fc6";
		document.getElementById(activePop).style.visibility="hidden";
		document.getElementById(activePop).style.display="none";
		//document.getElementById(activePop).style.background = "#ffedc9";
		activeMenu = 0;
		activePop = 0;	
		}
	
	}
	
	function hilitePop(){
	clearTimeout(hideTimer);
	//document.getElementById(activePop).style.background = "#FF9900";
	}
