/*code for collapsing divs using JQUERY LIBRARY
* The code collapses all divs with the class "hide". When the table div containing
* the hide class is clicked, the div appears.
*/
$(document).ready(function() {
  $('.hide').hide();
  $('.show').click(function() {  $(this).next().slideToggle('fast');
  });
});
