
	var J = jQuery.noConflict(); // Variable $ umgeschrieben in J, um Konflikt mit mootools zu verhindern
	J(function(){ // hinzugefügt
  J('#navigation ul ul').css('filter', 'alpha(opacity=90)'); // wird fuer IE benoetigt
	J('#navigation ul ul').css('display', 'none');
	
	// $('#menuh a[id^=item]').hover(function(){
	J('#navigation > ul li').hover(function(){
		// $(this).parent().find('ul.sub').stop().fadeIn('slow');
		J(this).children('ul').fadeIn('slow');
	}, function(){
		// $(this).parent().find('ul.sub').stop().fadeOut('slow');
		J(this).children('ul').fadeOut('slow');
	});
});
	
	
	
	
/*You don't want your styles and whatever styles jQuery uses to clash, so it's probably best to use different DIVs.

Example:


Code:
<div id="fade">
	<div class="black_overlay">
	</div>
</div>Set the .black_overlay display to block and #fade to display none. Then let jQuery bring #fade and all its contents into view. */