// JavaScript Document

var quote= new Array(6) 
quote[0]="nav";
quote[1]="navfirst"; 
quote[2]="navlistings"; 
quote[3]="navnews"; 
quote[4]="navreviews"; 
quote[5]="navbuyer";

startList = function() {

var x=0; 
for (x=0; x<6; x++) 
{ 

if (document.all&&document.getElementById) {
navRoot = document.getElementById(quote[x]);
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", "");
   }
   }
  }
 }
 
} 
 
}
window.onload=startList;
