startList = function() {
	//ensure that this script only runs in IE (and Opera impersonating IE doesn't count)
	if (navigator.appName=="Microsoft Internet Explorer"
	    && navigator.userAgent.indexOf("MSIE 7")==-1
            && navigator.userAgent.indexOf("MSIE 8")==-1
		&& navigator.userAgent.indexOf("Opera ")==-1
		&& document.getElementById ) {
		navRoot = document.getElementById("dyn_menu");
	    if (navRoot != null) {
    		for (i=0; i<navRoot.childNodes.length; i++) {
    			node = navRoot.childNodes[i];
    			if (node.nodeName=="LI") {
    				node.onmouseover=function() {
    					this.className+=" over";
    					this.style.styleFloat="left";
    				}
    				node.onmouseout=function() {
    					this.className=this.className.replace(" over", "");
    					this.style.styleFloat="none";
    				}
    			}
    		}
		}
	}
}
window.onload=startList;

