// Begin code to allow css dropdown to work in IE5 and IE6
startList = function() {
// This is only needed for IE browser ver. 5 & 6 
if(!/MSIE (5|6)/.test(navigator.userAgent)) return;
// Opera 8 spoofs as IE6 so check for Opera too
if(/Opera/.test(navigator.userAgent)) return;
if (document.all&&document.getElementById) {
	navRoot = document.getElementById("nav");
	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", "");
   			}
   		}
  	}
 }
}
if (window.attachEvent) window.attachEvent("onload", startList);
// End code to allow css dropdown to work in IE5 and IE6
