$(document).ready(function() {						   
$('#nav li').hover(
	function () {
		$('ul', this).animate({height:"show",opacity:"show"},"slow"); return false; 
	},
	function () {
		$('ul', this).animate({height:"hide",opacity:"hide"},"slow"); return false;       
	}
);	
});
