<!--
	var menuTimer;
	var menuakTimer;
	var PageLoaded = 0;

	function initPage() {
		PageLoaded = 1;
	}

	function LayerVisibility(strId,bShow) {
	  if (navigator.appName == "Netscape" && document.layers != null)
     	document.layers[strId].visibility = (bShow!=0)?"show":"hide";
	  else
    	document.getElementById(strId).style.visibility = (bShow!=0)?"visible":"hidden";
  }
	
	function showsubmenu(no) {
		
//		if (PageLoaded == 1) {
// herausgenommen, da ansonsten auf einer Seite mit Push der Mouseover beim Memnü nicht mehr funktioniert		
			var max = 5;
			stopcountdown();
				
			for( var i = 1; i<= max; i++ ) {
		    LayerVisibility("drop"+i,(i==no)?1:0);
				
				
				if (document.getElementById("dropparent"+i).className != "loginbutton norightmargin") {
				
					if ((i==no) || (document.getElementById("dropparent"+i).className == "activebutton") || (document.getElementById("dropparent"+i).className == "activebutton norightmargin")) {
						document.getElementById("dropparent"+i).style.color 		  = "#333333";
						document.getElementById("dropparent"+i).style.backgroundColor = "#CCCCCC";
						document.getElementById("dropparent"+i).style.backgroundImage = "url(img/whiteorange.gif)";			
					} else {
						document.getElementById("dropparent"+i).style.color 		  = "#FFFFFF";
						document.getElementById("dropparent"+i).style.backgroundColor = "#666666";
						document.getElementById("dropparent"+i).style.backgroundImage = "url(img/orange.gif)";						
					}
				
				}
			}	
//		}
	}

		
	function startcountdown() {
		var t = 500;
  	menuTimer = window.setTimeout("showsubmenu(-1);",t);
	}
	
	function stopcountdown() {
		window.clearTimeout(menuTimer);
	}	







	function showaktien(no) {
		var max = 2;
		
		stopakcountdown();
		for( var i = 1; i<= max; i++ ) {
		    LayerVisibility("dropaktien"+i,(i==no)?1:0);
		}	
	}
	
	function startakcountdown() {
		var t = 500;
  	menuakTimer = window.setTimeout("showaktien(-1);",t);
	}
	
	function stopakcountdown() {
		window.clearTimeout(menuakTimer);
	}	

	
	-->

