$(document).ready(function(){	
	$('#nav li').hover(
		function(){						
			$(this).find('ul').css({'opacity' : '0'});		
			$(this).find('ul').css({'display' : 'block'});		
			$(this).find('ul').stop(true,false).animate({'opacity' : '1'}, 200);
		},function(){
			$(this).find('ul').fadeOut(200);
	});		
});
