// simple jquery show/hide by Chuck Reynolds http://rynoweb.com

$(document).ready(function() {
  $('div.show-hide:eq(0)> div').hide();
});
/* hide all divs in main div container */

$(document).ready(function() {
  $('div.show-hide:eq(0)> div').hide();
  $('div.show-hide:eq(0)> h5').click(function() { });
});
/* bind a click handler to each <h4> that's a child of main div */

$(document).ready(function() {
  $('div.show-hide:eq(0)> div').hide(); 
  $('div.show-hide:eq(0)> h5').click(function() {
    $(this).next().slideToggle('fast');
  });
});
/* drop the .slidetoggle() inside the click method */