// NAVIGATION ROLLOVER (HOVER) TWEAK FOR INTERNET EXPLORER 4,5,6 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", "");			}	}}//CONTENT DISPLAY FOR TOP BANNERfunction displaycnt(showtype, hidetype){		divhide = document.getElementById(hidetype);	divhide.className=divhide.className.replace("on", "");		divshow = document.getElementById(showtype);	divshow.className=" on";}