﻿//<![CDATA[
function highlight_active_sidebar_links() {
    $("#inline-nav a").each(function(){
    var href = this.getAttribute('href');
    var location = new String(document.location.href);
    //alert(location.substring(location.lastIndexOf(href),location.length));
    if (location.substring(location.lastIndexOf(href),location.length) == href){
    $(this).attr('class',"activenav");
    }});}
    window.onload = function() {
    highlight_active_sidebar_links();
};
//]]>