// JavaScript Document
function mimicHover() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("cascade1");
		navRoot.onmouseover=function() {
			this.className+=" over";
			}
		navRoot.onmouseout=function() {
			this.className=this.className.replace(" over", "");
			}
	}
}

