 $(document).ready(function() {

	 $('div[id^=toggleButton]').each(function() {
	 
	   $(this).next().hide();
  	 });
	 
	 $('div[id^=toggleButton]').click(function() {

	   var toggleSection = $(this).next();

       if ($(toggleSection).is(":hidden"))
       {
            $(toggleSection).slideDown("fast");
       } else {
            $(toggleSection).slideUp("fast");
       }
  	 });
 });

