jQuery(document).ready(function() {
  jQuery(".searchcontent").hide();
  //toggle the componenet with class msg_body
  jQuery(".searchicon").click(function()
  {
    jQuery(this).next(".searchcontent").slideToggle(100);
  });
  
 
  
});
