$(document).ready(function() {
	$("#navigation ul li").hover(function(){
		//$(this).stop().find("ul").stop();
		$(this).stop().find("ul").stop().fadeTo(200, 1);
	}, function(){
		//$(this).stop().find("ul").stop();
		$(this).stop().find("ul").stop().fadeTo(200, 0);
	});
	
	
});
