<!--
var menuArray=new Array()
var topStatusHighlight="";
function showSubmenu(obj){
	if (!document.getElementById) return
	var ID=obj.id
	if (ID.indexOf("sub_") != -1) ID = ID.substring(4);

	clearTimeout(menuArray[ID])
	menuArray[ID]="NONE"
	if(obj){
		obj.style.color="#000000";
		/*obj.style.backgroundColor="#4AB780";*/
	}
	var entry = document.getElementById("sub_"+ID);
	if(entry){
		entry.style.display="inline";
		entry.style.left=parseInt(obj.style.left)
	}
}
function topMenuelowlight (ID){
    if (topStatusHighlight != ID)
      lowlight(ID);
}
function topMenuehighlight (ID){
    if (topStatusHighlight != ID)
      highlight(ID);
}
function hideSubmenu(obj){
	if (!document.getElementById) return
	var ID=obj.id
	if (ID.indexOf("sub_") != -1) ID = ID.substring(4);
    menuArray[ID] = setTimeout("hideSubmenuTimed('"+ID+"')", 100)
}
function hideSubmenuTimed(ID){
	if (!document.getElementById) return
	if(menuArray[ID]!="NONE"){
		var obj = document.getElementById(ID);
		if (!obj.isHighlighted){
			obj.style.color="#000000";
			/*obj.style.backgroundColor="";*/
		}
		var entry = document.getElementById("sub_"+ID);
		if(entry) entry.style.display = "none";
	}
}
function MyMenuStatusHighlight(ID){
	var entry = document.getElementById(ID);
	if(entry){
        topStatusHighlight = ID;
		entry.style.color="#000000";       
		/*entry.style.backgroundColor="#4AB780";*/
		entry.isHighlighted=true
		entry.className="highlighed" 
        var images=document.getElementsByTagName("img")
        for (var i=0; i < images.length; i++){
            if (images[i].name==ID){
                var pic=images[i];
                var picsrc =pic.src
                picsrc=picsrc.substring(0,picsrc.indexOf(".gif"))+"_st.gif"
                pic.src=picsrc
                break;
            }
        }
	}
}
//-->