var inmenu=false;
var sinmenu=false;
var lastmenu=0;
var slastmenu=0;

function Menu(current) 
{
   if (!document.getElementById) return;

   inmenu=true;
   oldmenu=lastmenu;
   lastmenu=current;
   if (oldmenu) Erase(oldmenu);
   m=document.getElementById("menu-" + current);
   m.style.backgroundColor="burlywood";
}

function Erase(current) {
   if (!document.getElementById) return;
   if (inmenu && lastmenu==current) {
	  return;
   }
   m=document.getElementById("menu-" + current);
   
   m.style.backgroundColor="saddlebrown";//"#ff3300";
}

function Timeout(current) 
{
   inmenu=false;
   window.setTimeout("Erase('" + current + "');",500);
}


function SMenu(current) 
{
   if (!document.getElementById) return;

   sinmenu=true;
   oldmenu=lastmenu;
   slastmenu=current;
   if (oldmenu) SErase(oldmenu);
   m=document.getElementById("menu-" + current);
   m.style.backgroundColor="white";
}

function SErase(current) {
   if (!document.getElementById) return;
   if (sinmenu && slastmenu==current) {
	  return;
   }
   m=document.getElementById("menu-" +  current);
   m.style.backgroundColor="#DEB887";
   
}
function STimeout(current) 
{
   sinmenu=false;
   window.setTimeout("SErase('" + current + "');",500);
}

function Highlight(menu,item) 
{
   if (!document.getElementById) return;
   inmenu=true;
   lastmenu=menu;
   obj=document.getElementById(item);
   obj.style.backgroundColor="#FFFFFF";
}

function UnHighlight(menu,item) 
{
   if (!document.getElementById) return;
   Timeout(menu);
   obj=document.getElementById(item);
   obj.style.backgroundColor="FF8042";
}




