var inmenu=false;
var lastmenu=0;
var isIE=null;
		if (navigator.appName.indexOf('Microsoft Internet Explorer') !=-1) isIE=1;
		
function Menu(current) {
   if (!document.getElementById) return;
   inmenu=true;
   oldmenu=lastmenu;
   lastmenu=current;
   if (oldmenu) Erase(oldmenu);
   m=document.getElementById("menu-" + current);
   box=document.getElementById(current);

   box.style.left= m.offsetLeft;
   box.style.top= m.offsetTop + m.offsetHeight;
   if (isIE){
			box.style.left= m.offsetLeft+6;
   			box.style.top= m.offsetTop + m.offsetHeight+1;
					
				}
   box.style.visibility="visible";
   m.style.backgroundColor="#CC6600";
   box.style.backgroundColor="#006600";
   box.style.width="125px";
}
function Erase(current) {
   if (!document.getElementById) return;
   if (inmenu && lastmenu==current) {
	  return;
   }
   m=document.getElementById("menu-" + current);
   box=document.getElementById(current);
   box.style.visibility="hidden";
   m.style.backgroundColor="#006600";
}
function Timeout(current) {
   inmenu=false;
   window.setTimeout("Erase('" + current + "');",500);
}
function Highlight(menu,item) {
   if (!document.getElementById) return;
   inmenu=true;
   lastmenu=menu;
   obj=document.getElementById(item);
   obj.style.backgroundColor="#CC6600";
}
function UnHighlight(menu,item) {
   if (!document.getElementById) return;
   Timeout(menu);
   obj=document.getElementById(item);
   obj.style.backgroundColor="#006600";
}


