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