jQuery(document).ready(function() {
  jQuery(".relcontent").hide();
  //toggle the componenet with class msg_body
  jQuery(".relheading").click(function()
  {
    jQuery(this).next(".relcontent").slideToggle(500);
  });
});
