startList = function() {
    if (document.all&&document.getElementById) {
	navRoot = document.getElementById("nav");
	for (i=0; i<navRoot.childNodes.length; i++) {
	    node = navRoot.childNodes[i];
	    if (node.nodeName=="DT") {
		node.onmouseover=function() {
		    // Hide Select box.
		    // get a list of all the body elements (there will only be one)
		    myDocumentElements=document.getElementsByTagName("body");
		    // the body element itself is the first item of the list
		    myBody=myDocumentElements.item(0);
		    // now, get all the select elements that are children of the body
		    myBodyElements=myBody.getElementsByTagName("select");

		    for (j=0;j<myBodyElements.item.length;j++){
			if(myBodyElements.item(j))
			    myBodyElements.item(j).style.display = "none";
		    }

		    this.className+=" over";
		}
		node.onmouseout=function() {
		    // Hide Select box.
		    // get a list of all the body elements (there will only be one)
		    myDocumentElements=document.getElementsByTagName("body");
		    // the body element itself is the first item of the list
		    myBody=myDocumentElements.item(0);
		    // now, get all the select elements that are children of the body
		    myBodyElements=myBody.getElementsByTagName("select");

		    for (j=0;j<myBodyElements.item.length;j++){
			if(myBodyElements.item(j))
			    myBodyElements.item(j).style.display = "inline";
		    }

		    this.className=this.className.replace(" over", "");
		}
	    }
	}
    }
}

/*function resize_menu(){
	for(i=0;i<items_count;i++){
		if(document.getElementById("dt_"+i) != undefined){

			document.getElementById("dt_"+i).style.border = "1 solid #FF5A00";
			document.getElementById("dt_"+i).style.borderLeft = "1px solid white";
		}
  	}
}*/

