var pagePath = window.location.pathname;

function mouseOverTopNavState(divId) {
    var div = document.getElementById(divId);
    if(div){
        //div.style.backgroundPosition = '0px 0px';
        //$(divId).style.display = "block";
        //Effect.Appear(divId);
    }
}

function mouseOutTopNavState(divId) {
  var div = document.getElementById(divId);
  if(div){
      //Effect.Fade(divId);
  }
}

function startList() {
  var i = 0;
  for (i = 0; i < document.getElementById('nav').childNodes.length; i++) {
      node = document.getElementById('nav').childNodes[i];
      if (node.nodeName == "LI") {
          node.onmouseover = function() {
              this.className = "over";
          }
          node.onmouseout = function() {
              this.className = "";
          }
      }
  }
}
