$(document).ready(function() {
  $('#review_table').tablesorter({widthFixed:true, widgets: ['zebra']}).tablesorterPager({container: $("#pager")}); 
  
  $('#review_table').bind("sortStart",function() { 
        $("#review_list_container").hide(); 
    }).bind("sortEnd",function() { 
        $("#review_list_container").show(); 
    }); 
});
