$().ready(function() {
    $("#nav li a").wrapInner("<span></span>");

    // Navigation highlights
    // Using the current path (e.g. /Section/Page)
    var path = location.pathname;

    // Handle links to the current path
    if (path) {
        if ((path == "/") || (path =="/default.aspx")) {
            $('#nav_LI_0_4_2368 a').addClass('active');
        }
        else {
            $('a[href$="' + path + '"]').addClass('active');
        }
    }
});