
startList = function() {
	var nodes = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<nodes.length; i++) {
		nodes[i].onmouseover = function() {
			this.className += " over";
		}
		nodes[i].onmouseout = function() {
			this.className = this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", startList);
// Section for Horizontal Menu Bar


function rollOver()
    {
    element.className = element.className + " over" ;
    }
    
  function rollOff()
    {
    element.className = element.className.replace(" over", "");
    }

  function clickItem()
    {
    var node ;
    var vFoundAction = false ;
  
    for (i=0; i < element.childNodes.length; i++)
      {
      node = element.childNodes[i];

      if (node.tagName == "A")
        {
        vFoundAction = true ;
      
        if (node.click)
          {
          node.click();
          }
        else
          {
          window.location.replace(node.href);
          }
        }
      if (vFoundAction)
        {
        break ;
        }
      }
    event.cancelBubble  = true ;
    }

