$(document).ready(function() 
{	
	
	$('ul#navi_ebene3 li').hover(function() { 
		
		$(this).fadeOut(100);
		$(this).fadeIn(500);
	});
		
});

	
	
