  $("document").ready(function(){
  $(".ueber").hide(),
  $(".infobox_text").hide();
      $(".infobox_wrapper span#imp").hover(
       function() {
        $(this).nextAll(".ueber").fadeIn(500),
        $(this).nextAll(".infobox_text").fadeIn(500);
       },
       function() {

         $(this).nextAll(".ueber").fadeOut(500),
         $(this).nextAll(".infobox_text").fadeOut(500);
        
       }
      );
      
      });

