jQuery(function($) {
	function highlight_active_sidebar_links() {
        $("div.relative ul#nav li").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");
            }
        });
    }
	
	var path = location.pathname.substring(1);
	$('div.relative ul#nav a[href$="' + path + '"]').addClass('active');

});
