/*
CLCP v2.1 Clear Links to Current Page
Jonathan Snook
This code is offered unto the public domain
http://www.snook.ca/jonathan/
*/

function clearCurrentLink(){
    if (document.getElementById("nav") !=null )

    var a = document.getElementById("nav").getElementsByTagName("a");
    for(var i=0;i<a.length;i++)
        if(a[i].href == window.location.href.split("#")[0])
            highlightNode(a[i]);
}

/* Removes <a> tag around menu item text */
function removeNode(n){
    if(n.hasChildNodes())
        for(var i=0;i<n.childNodes.length;i++)
            n.parentNode.insertBefore(n.childNodes[i].cloneNode(true),n);
    n.parentNode.removeChild(n);
}

/* sets class on current menu item */
function highlightNode(n) {
    n.className = n.className+" current";
}