// basic show and hide
 $(document).ready(function() {
   $('#hideh1').click( function() {
    $('div.showhide').hide();
   });
   $('#showh1').click( function() {
    $('div.showhide').show();
   });
   $('#toggleh1').click( function() {
    $('div.showhide').toggle();
	if ($(this).attr("class") == "show")
             $(this).attr("class", "hide");
          else
             $(this).attr("class", "show");
   });

});
