// JavaScript Document


startList2 = function() {
	
if (document.all&&document.getElementById) {
navRoot2 = document.getElementById("nav2");
for (ii=0; ii<navRoot2.childNodes.length; ii++) {

node2 = navRoot2.childNodes[ii];

if (node2.nodeName=="LI") {
	
node2.onclick=function() {

for (iii=0; iii<navRoot2.childNodes.length; iii++) {
nodeP= navRoot2.childNodes[iii];
nodeP.className=this.className.replace(" over", "");
}

this.className+=" over";

  }
  

//  node2.onmouseover=function() {
// this.className=this.className.replace(" over", "");
//  }


   }
  }
  
  navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onclick=function() {
this.className+=" over";
  }
  
  
//  node.onmouseout=function() {
//  this.className=this.className.replace(" over", "");
//   }


   }
  }
  
  
 }
}
window.onload=startList2;