$().ready( function() {
  $.ajax({
    type: "GET",
    url: "/nf/AjaxResponse/Navigator",
    data: navigatorRequestParams,
    success: function(resp){
      $("#navigatorsPlaceHolder").html(resp);      
      if (resp != '' && resp.indexOf('#navigators-flag#') != -1) {
        $("#main-listing-table").addClass('table-narrow');
        $("#chaps").addClass('long-nav');
      } else {
        $("#chaps").remove();
      }
    }
  });
});

