//-----------------------------------------------------------------------------
// nav-highlight.js - 9540
// Highlight links on this page to itself - e.g. in navigation
//-----------------------------------------------------------------------------
$(document).ready(function() {
    // Get rid of "http://"
    loc = location.href.substring(7);

    // Get rid of domain name
    loc = loc.substring(loc.indexOf("/"));

    // Get rid of fragment identifier
    var i = loc.indexOf("#");
    if (i > -1) loc = loc.substring(0, i);

    // Highlight navigator links to this page
    $("#navigator a[href='" + loc + "']").addClass('now');

    var loc_parent = $('html > head > link[rel="up"]').attr('href');
    $("#navigator a[href='" + loc_parent + "']").addClass('now');

    // Highlight footer sitemap links to this page
    $("#footer-sitemap a[href='" + loc + "']").addClass('now');
});
