$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $("#content1").hide();
  $("#content2").hide();
  $("#content3").hide();
  $("#content4").hide();
  $("#content5").hide();
  $("#content6").hide();
  $("#content7").hide();
  $("#content8").hide();
  $("#content9").hide();
  $("#content10").hide();

  //toggle the componenet with class msg_body
  $("#click1").click(function()
  {
    $(this).next("#content1").slideToggle(600);
  });
  $("#click2").click(function()
  {
    $(this).next("#content2").slideToggle(600);
  });
  $("#click3").click(function()
  {
    $(this).next("#content3").slideToggle(600);
  });
  $("#click4").click(function()
  {
    $(this).next("#content4").slideToggle(600);
  });
  $("#click5").click(function()
  {
    $(this).next("#content5").slideToggle(600);
  });
  $("#click6").click(function()
  {
    $(this).next("#content6").slideToggle(600);
  });
  $("#click7").click(function()
  {
    $(this).next("#content7").slideToggle(600);
  });
  $("#click8").click(function()
  {
    $(this).next("#content8").slideToggle(600);
  });
  $("#click9").click(function()
  {
    $(this).next("#content9").slideToggle(600);
  });  
  $("#click10").click(function()
  {
    $(this).next("#content10").slideToggle(600);
  });
});