$(document).ready(function() {


        $('head').append('<style type="text/css">.tooltip:hover u {display: none;}</style>');

        $('.tooltip').hover(
            function(){
                $(this).children('u').fadeIn(500);
            }, function(){
                $(this).children('u').stop(true,true).hide();
            }
        );

    
        $(".meldung").hide().fadeIn(1000).delay(3000).fadeOut(2000);
        


        
});


