$(document).ready(function()
{
  //hide the all of the element with class txt_body
  $(".slidebody").hide();
  //toggle the componenet with class txt_body
  $(".slideheader").click(function()
  {
    $(this).next(".slidebody").slideToggle("fast");
});

});
