$(document).ready(function(){
  $('#extraQuestionsTable').hide();
  $('.click-show').click(
  function(){
    $('#extraQuestionsTable').toggle();
    $('.scroll-pane').jScrollPane({showArrows:true});
  }
  );
});
