function highlight_active_sidebar_links() {
    $("ul a").each(function(){
        var href = this.getAttribute('href',2);

        var location = new String( document.location );
        location = location.substr(0, href.length );

        if ( location == href) {
            $(this).addClass("active");
        }
    });
}
