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