/*nifty corners layout*/

window.onload = function() {
    setActive();
    Nifty("div#menu a", "medium transparent top");
    Nifty("ul#intro li", "same-height");
    Nifty("div.date");
    Nifty("div.comments div");
    Nifty("div#footer");
    Nifty("div#container", "bottom");
    Nifty("ul#split h3", "medium top");
    Nifty("ul#ads h3", "medium top");
}


function setActive() {
    aObj = document.getElementById('nav').getElementsByTagName('a');
    for (i = 0; i < aObj.length; i++) {
        if (document.location.href.indexOf(aObj[i].href) >= 0) {
            aObj[i].className = 'activelink';
        }
    }
}



