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