// suckerfish style drop down menu
menuList = function() 
{
  if (document && document.getElementById)
  try
  {
    navx = document.getElementById("nav"); 
    ul = navx.getElementsByTagName("UL")[0];
    li = ul.getElementsByTagName("LI");
    for (i=0; i<li.length; i++)
      {
	node = li[i];
	node.onmouseover=function() 
	  {
	    // document.getElementById("msg").innerHTML = "onmouseover";
	    this.className="over";
	  }
	node.onmouseout=function() 
	  {
	    // document.getElementById("msg").innerHTML = "onmouseout";
	    this.className="";
	  }
      }
  }
  catch (e)
  {
    alert(e.description);
  }
}
window.onload=menuList;

