$(document).ready(function()
{
  $(".lsu_body").hide();
  $(".lsu_head").click(function()
  {
    $(this).next(".lsu_body").slideToggle(600);
  });
});
