$(document).ready(function() {

    $('.navnode_image').css('display', 'none');
/*
    $('.navnode_content').mouseenter(function(){
        $('.navnode_image', this).fadeToggle(50);
        if ($('.navnode_untermenu_wrap', this).length > 0) {
            $('.navnode_untermenu_wrap', this).fadeIn('fast');
        }        
    })
    $('.navnode_content').mouseleave(function(){
        $('.navnode_image', this).fadeToggle(50);
        if ($('.navnode_untermenu_wrap', this).length > 0) {
            $('.navnode_untermenu_wrap', this).fadeOut('fast');
        }        
    })    

*/    
    $('.navnode').hover(
        function () {
            $('.navnode_image', this).fadeToggle(50);
            if ($('.navnode_untermenu_wrap', this).length > 0) {
                $('.navnode_untermenu_wrap', this).fadeIn('fast');
            }
        }, 
        function () {
            $('.navnode_image', this).fadeToggle(200);
            if ($('.navnode_untermenu_wrap', this).length > 0) {
                $('.navnode_untermenu_wrap', this).fadeOut('fast');
            }
            
        }
    )
    
     
});

