$(document).ready(function(){
						   
	$('#navigation ul li.dropDown').hover(
			function() { $('ul', this).stop(true, true).fadeIn(); },
			function() { $('ul', this).stop(true, true).fadeOut(); });
	
	});
	
