/*<![CDATA[*/
	<!--
	  // JS for hover in ie
	startList = function() {
		if (document.all&&document.getElementById) {
			var navRoot = document.getElementById("mainmenu");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" iehover";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" iehover", "");
					}
				}
				
				var navSubRoot = navRoot.getElementsByTagName("LI");
				for (i=0; i<navSubRoot.length; i++) {
					navSubRoot[i].onmouseover=function() {
						this.className+=" iehover";
					}
					navSubRoot[i].onmouseout=function() {
						this.className=this.className.replace(" iehover", "");
					}
				}				
				
			}
		}
	}
	window.onload=startList;

	// -->
/*]]>*/

