jQuery(document).ready(function(){
jQuery(".infobulle").each(function(i){
   jQuery(this).mouseover(function(){
      $(".bulle").eq(i).show();
   });
   jQuery(this).mouseout(function(){
      jQuery(".bulle").eq(i).hide();
   });
});
});

