$(document).ready(function() {

	$("#nav li ul").animate({opacity: 0}, 10);


	$('#nav li').hover(
		function() {
			$('ul', this).animate({opacity: 1}, 300);
		},
		function() { 
			$('ul', this).animate({opacity: 0}, 300);
		}
	);



})