
// Всплывающее подменю, только для IE, для остальных браузеров работает CSS
startList = function()
{
  if(document.all&&document.getElementById)
  {
    ul = document.getElementById("menu").firstChild;
    for(j=0; j<ul.childNodes.length; j++)
    {
      li=ul.childNodes[j];
      li.onmouseover=function()
      {
        this.className+=" over";
      }
      li.onmouseout=function()
      {
        this.className=this.className.replace(" over", "");
      }
    } 
  }
}
window.onload = startList;