function dropdowns(divname) {
    //if (document.all && document.getElementById) {
		//alert("creating functions for "+divname);
       navRoot = document.getElementById(divname);
       listRoot = navRoot.childNodes[0];
		//alert(listRoot.length);

       for (i=0; i<listRoot.childNodes.length; i++) {
          node = listRoot.childNodes[i];

          if (node.nodeName=="LI") {

             node.onmouseover=function() {
				currentname = this.className;
                this.className=currentname+"_over";
				//alert(this.className);
             }
             node.onmouseout=function() {
                this.className=this.className.replace("_over","");
             }
          }
       }
    //}
}
