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