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