 $(document).ready(function() {
		$('h5').next().hide();

$('h5').each(function(){
$(this).click(function() {
	  		
$(this).next().toggle();
		});
});

		
  });
