// JavaScript Document
$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".hidden-body").hide();
  
  //toggle the componenet with class msg_body
  $(".hidden-header").click(function()
  {
    $(this).next(".hidden-body").slideToggle(600);
  });
});