$(document).ready(function(){

   // Resize the table to the window size.
   $(window).resize(function(){
      $content_height = $('#content_table').height();
      $window_height = $(window).height();
      if($content_height != $window_height) {
         $('#content_table').css('height', $(window).height());
      }
   });



   // Stuff to do when loading the page - leave this at the bottom of the file
   $(window).trigger('resize');
});

