// JavaScript Document


$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $("div.dropitem").hide();
  //toggle the componenet with class msg_body
  $("p.droplink").click(function()
  {
    $(this).next("div.dropitem").toggle("slow");
  });
});
