$(document).ready(function() {
    var ulid = $('ul.list').attr('id');
    $('.' + ulid, $('#navigation')).css('background', '#60080d');
    var pathname = window.location.pathname;

    pathname = pathname.substring(pathname.lastIndexOf('/')).replace("/", "");
    if (pathname == "")
        pathname = "default.htm";
    $('a[href ="' + pathname + '"]', $('.sidebar')).css('text-decoration', 'underline');
})
