// JavaScript Document

$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".toggle_content").hide();
  //toggle the componenet with class msg_body
  $(".toggle_head").click(function()
  {
    $(this).next(".toggle_content").slideToggle(300);
  });
});
