// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
/* z-index fix */
var ieULs = document.getElementById('left_navmenu').getElementsByTagName('ul');
/** IE script to cover <select> elements with <iframe>s **/
for (j=0; j<ieULs.length; j++) {
ieULs[j].innerHTML = ('<iframe src="about:blank" scrolling="no" frameborder="0"></iframe>' + ieULs[j].innerHTML);
        var ieMat = ieULs[j].firstChild;
                ieMat.style.width=ieULs[j].offsetWidth+"px";
                ieMat.style.height=ieULs[j].offsetHeight+"px";
                ieULs[j].style.zIndex="99";
}
var ieULs1 = document.getElementById('left_navmenu_1').getElementsByTagName('ul');
/** IE script to cover <select> elements with <iframe>s **/
for (j=0; j<ieULs1.length; j++) {
ieULs1[j].innerHTML = ('<iframe src="about:blank" scrolling="no" frameborder="0"></iframe>' + ieULs1[j].innerHTML);
        var ieMat1 = ieULs1[j].firstChild;
                ieMat1.style.width=ieULs1[j].offsetWidth+"px";
                ieMat1.style.height=ieULs1[j].offsetHeight+"px";
                ieULs1[j].style.zIndex="99";
}

/*left menu*/
navRoot = document.getElementById("left_navmenu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }

/*left menu 1 */
navRoot = document.getElementById("left_navmenu_1");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }

/*top menu*/
nodes = document.getElementsByName("top_menu");
for (ind=0; ind<nodes.length; ind++) {
node = nodes[ind];
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
  }
}

 }
}
window.onload=startList;