var setSideNavigationVisibility = function()

in static/js/jena-navigation.js [74:89]


  var setSideNavigationVisibility = function() {
    $("#navigation>h1").hide();
    $("#navigation>ul").hide();
    showMenu( "#quick-links" );
    showMenu( "#asf-links" );

    var currentTopicMenu = "#" + currentSection.fileName.replace( /\_/g, "-" );
    showMenu( currentTopicMenu );

    // make the current topic link styled as 'current'
    currentTopicListElem = $( currentTopicMenu ).next()
                                                .find( "a[href$='" + currentPage.fileName + "']" )
                                                .first()
                                                .parent();
    currentTopicListElem.toggleClass( "selected" );
  };