﻿startList = function() {
    if (document.all&&document.getElementById) {
        navRoot = document.getElementById("mr-topnav");
        for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName=="DIV") {
                node.onmouseover=function() {
                    this.className+=" over";
                    }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                    }
            }
        }
        
        navRoot2 = document.getElementById("top");
        cn = navRoot2.getElementsByTagName("TD");
        for (i=0; i<cn.length; i++) {
            n = cn[i];
            if (n.className.indexOf("hlight")!=-1){
                n.onmouseover=function() {
                    this.className+=" hlightie";
                }
                n.onmouseout=function() {
                    this.className=this.className.replace(" hlightie", "");
                }
            }
        }
    }
}

window.onload=startList;
