startList = function() {
    if (document.all&&document.getElementById) {
        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", "");
                }
            }
        }
    }
}

window.onload=startList;

// for NAV HIGHLIGHT
/* Moved to header asset 
window.addEvent('domready',function() {
    var strURL = window.location.href;

if( strURL.indexOf("about") > -1 ) {
        $("first").className = "primary active";
    } else if(strURL.indexOf("platform") > -1 ) {
        $("second").className = "primary active";
    } else if(strURL.indexOf("customers") > -1 ) {
        $("third").className = "primary active";
    } else if(strURL.indexOf("private_capital") > -1 ) {
        $("fourth").className = "primary active";
    }else if(strURL.indexOf("investor") > -1 ) {
        $("fith").className = "primary active";
    }else if(strURL.indexOf("press") > -1 ) {
        $("last").className = "primary active";
    } 
});
*/