$(document).ready(function()
{
  $(".section_body").hide();
  $(".section_head").click(function()
  {
    $(this).next(".section_body").slideToggle(600);
	return false;
  });
  //$("#showinfo").slideToggle(600);
});