$().ready(function(){
   $(".infobu").each(function(){
      $(this).children().eq(0).click(function(){
         $(this).next().slideToggle();
      });
   });
});
