// JavaScript Document

function startList() {

if (document.all&&document.getElementById) {
navRoot = document.getElementById("navbox-ul");

for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI" && node.className == "submenu") {
	node.onmouseover=function() {
		this.className+=" over";
		hideIt();		
		  }
		  node.onmouseout=function() {
		  	displayIt();
		  this.className=this.className.replace(" over", "");
		   }
   }
  }
 }
}
