$(document).ready(function()
{
  $('.spoiler').hide();
  $('.spoiler_head').toggle(
	 function()
	  {
		$(this).next('.spoiler_body').slideDown("slow");
	  },
	 function()
	  {
		$(this).next('.spoiler_body').slideUp("slow");
	  });
});
