var oInterval =""
function onSMenuHover (idR)
{

g=document.getElementById ("glb")
o=document.getElementById (idR)
m=document.getElementById (idR+"_r")
i=document.getElementById (idR+"_i")

o.style.backgroundColor  = "#2D7198";
m.style.width=i.width+1;

//m.style.left=o.offsetLeft+g.offsetLeft;

if  (navigator.appName=="Netscape")
{
gg=(g.clientWidth-750)/2;
m.style.width=i.width-4;
} else 
{
gg=g.offsetLeft;
}

m.style.left=o.offsetLeft+gg;
m.style.display = "block";
}

function onSMenuOut(idS)
{

document.getElementById (idS).style.backgroundColor  = "#56ACDD";
var idRE=document.getElementById (idS+"_r")

idRE.style.zorder=window.setTimeout("onTimer('"+idS+"_r"+"');", 10);
}

function onTimer (idRTs)
{
idRT=document.getElementById(idRTs);
idRT.style.display = "none";
}

function stopTimer (o)
{
//alert (o.style.zorder)
window.clearTimeout(o.style.zorder);
o.style.display = "block";
}

function hideM (o)
{
o.style.display = "none";
}