// JavaScript Document
/* =dropdowns/hover for ie - 
needs to be called with the root 
----------------- */

// IE only function
startList = function(elementId) {
	if (document.all && document.getElementById) {
	    navRoot = document.getElementById(elementId);
	    if (!navRoot) {
	        return(false);
	    }
		for (i=0; i<navRoot.childNodes.length; i++) {
		    node = navRoot.childNodes[i];
			if ( (node.nodeName=="LI") || (node.nodeName=="DL") || (node.nodeName=="DD") || (node.nodeName=="DT") ) {
				node.onmouseover = function() {
				    this.className+=" over";
				}
				node.onmouseout = function() {
				    this.className=this.className.replace(" over", "");
				}
			}
		}
	}
} 
