$(function()
{
  $(".news_body").hide();
  $(".news_head").click(function()
  {
    $(this).next(".news_body").slideToggle(300);
  });
});
