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