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