$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".hidecopy").hide();
  //toggle the componenet with class msg_body
  $(".hidelink").click(function()
  {
    $(this).next(".hidecopy").slideToggle(600);
  });
});
