// JavaScript Document drop_downr.js
startListR = function(w) {
if (document.all&&document.getElementById) {
navRootR = document.getElementById("navr");
for (j=0; j<navRootR.childNodes.length; j++) {
nodeR = navRootR.childNodes[j];
if (nodeR.nodeName=="LI") {
nodeR.onmouseover=function(w) {
this.className+=" over";
  }
  nodeR.onmouseout=function(w) {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startListR;