window.onload = kickOff;

function kickOff() {
    var allA = document.getElementsByTagName("a");
    for (var i=0; i<allA.length; i++) {
        allA[i].onfocus = doBlur;
        if (allA[i] == window.location.href) {
            allA[i].style.borderBottom = "none";
            allA[i].onclick = doDisable;
            allA[i].style.color = "#99aaaa";
            allA[i].style.cursor = "text";
            if (allA[i].parentNode.id == "dmbtype") {
                allA[i].style.color = "#999944";
            }
        }
    }
}

function doDisable() {
    //get rid of focus highlight from clicked link and disable link for current nav and subnav
    if (this.blur) {
        this.blur();
    }
    return false;
}

function doBlur() {
    //get rid of focus highlight from clicked link and disable link for current nav and subnav
        this.blur();
}