﻿// JScript File
<!--//--><![CDATA[//><!--

startList = function() {
    if (document.all&&document.getElementById) {
        navRoot = document.getElementById("ultnav");

        for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName=="LI") {
	            node.onmouseover=function() {
		            this.className+=" over";
		            for (a=0; a<this.childNodes.length; a++) {
		                if (this.childNodes[a].nodeName=="UL") {
		                    this.childNodes[a].style.display="block";
		                    this.childNodes[a].style.backgroundColor="#000000";
		                }
		            }
	            }
	            node.onmouseout=function() {
		            this.className=this.className.replace(" over", "");
		            for (a=0; a<this.childNodes.length; a++) {
		                if (this.childNodes[a].nodeName=="UL") {
		                    this.childNodes[a].style.display="none";
		                }
		            }
	            }
            }
        }
    }
}
window.onload=startList;

//--><!]]>