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

