// JavaScript Document

startList_top = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav_top");
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", "");
   }
   }
  }
 }
}

startList_img = function() {
if (document.all&&document.getElementById) {
navRoot2 = document.getElementById("nav_img");
for (j=0; j<navRoot2.childNodes.length; j++) {
node2 = navRoot2.childNodes[j];
if (node2.nodeName=="LI") {
node2.onmouseover=function() {
this.className+=" over";
  }
  node2.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  } 
  
navRoot3 = document.getElementById("nav_img2");
for (j=0; j<navRoot3.childNodes.length; j++) {
node3 = navRoot3.childNodes[j];
if (node3.nodeName=="LI") {
node3.onmouseover=function() {
this.className+=" over";
  }
  node3.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
  
navRoot4 = document.getElementById("nav_img3");
for (j=0; j<navRoot4.childNodes.length; j++) {
node4 = navRoot4.childNodes[j];
if (node4.nodeName=="LI") {
node4.onmouseover=function() {
this.className+=" over";
  }
  node4.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
  
navRoot5 = document.getElementById("nav_img4");
for (j=0; j<navRoot5.childNodes.length; j++) {
node5 = navRoot5.childNodes[j];
if (node5.nodeName=="LI") {
node5.onmouseover=function() {
this.className+=" over";
  }
  node5.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  } 
 }
}