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