// this is for IE6
// drop downs won't work in IE 6 without it
// to add drop downs, set new ul id to nav# where # is 1 greater than latest current drop down ul id
// then change # in    for (x=0; x<#; x++)  to the new id #
startList = function() {
	if (document.all&&document.getElementById) {
		for (x=0; x<1; x++) {
			navRoot = document.getElementById("nav"+x);
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
	  				}
	  				node.onmouseout=function() {
	  					this.className=this.className.replace(" over", "");
	   				}
	   			}
	  		}
		}
 	}
}
window.onload=startList;


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
