
function set_over ()
{
var divs = document.getElementsByTagName("div");
for (var i = 0; i < divs.length; i++) 
{

if (divs[i].className == 'menu_0')
{

divs[i].onmouseover =function() 
{ 
sid0=' '+this.id;sid1=sid0.split("_");
sid=sid1[1];
document.getElementById("ma_"+sid).className += " amenu_r";
this.className += " menu_r"; return false; 
}

divs[i].onmouseout=function() 
{
sid0=' '+this.id;sid1=sid0.split("_");
sid=sid1[1];
document.getElementById("ma_"+sid).className = document.getElementById("ma_"+sid).className.replace("amenu_r","");
this.className = this.className.replace("menu_r", ""); return false; 
}


divs[i].onclick=function() 
{
sid0=' '+this.id;sid1=sid0.split("_");
sid=sid1[1];
ll=document.getElementById("ma_"+sid).href
document.location.href=ll;
return false; 
}



}

}
return true;
}

