//expanding effect

jQuery(document).ready(function() {
  jQuery(".expandContent").hide();
  //toggle the componenet with class msg_body
  jQuery(".expandHeading").click(function()
  {
    jQuery(this).next(".expandContent").slideToggle(300);
  });
});
