jQuery(document).ready(function() {
  jQuery(".expand-content").hide();
  //toggle the componenet with class msg_body
  jQuery(".expand-heading").click(function()
  {
    jQuery(this).next(".expand-content").slideToggle(500);
    jQuery(this).toggleClass('down');
  });
});
