
document.observe("dom:loaded", function() {
    $$('.col-left a').each( function(anchor) {
        if ( window.location.href == anchor.getAttribute('href') ) {
            anchor.addClassName('active');
        }
    });
});

