function InitDropMenu(menuId)
{
  if (document.all && document.getElementById) 
  {
    var dropMenu = document.getElementById(menuId);
	if (dropMenu != null)
	{
      for (i = 0; i < dropMenu.childNodes.length; i ++) 
	  {
        var node = dropMenu.childNodes[i];
        if (node.nodeName == "LI") 
	    {
          node.onmouseover = function() { this.className += " over"; }
          node.onmouseout  = function() { this.className = this.className.replace(" over", "") }
        } // if
      } // for
	} // if
  } // if
} // function
