function LoadMenub()
{
  timerIDb = "";
  navRootb = document.getElementById("ddm2");
  for (i = 0; i < navRootb.childNodes.length; i++)
  {
    nodeb = navRootb.childNodes[i];
    if (nodeb.nodeName == "LI")
    {
      nodeb.onmouseover = function()
      {
        if (this.id != "end_li")
        {
          this.className = "over";

          if (this.id == timerIDb)
          {
            clearTimeout(timerb);
          }
          else if (this.id != timerIDb && timerIDb != "")
          {
            clearTimeout(timerb);
            document.getElementById(timerIDb).className = "out";
          }
        }
      }
      nodeb.onmouseout = function()
      {
        timerIDb = this.id;
        timerb = setTimeout("UnLoadMenub('" + this.id + "')", 1000);
      }
    }
  }
}
//window.onload = LoadMenub;

function UnLoadMenub(id)
{
  document.getElementById(id).className = "out";
}
