$(document).ready(function(){
	$('li','ul#menu').hover(function(){
		$(this).children('ul').animate({'height':'toggle','opacity':'toggle'},200);
	},function(){
		$(this).children('ul').animate({'height':'toggle','opacity':'toggle'},200);
	});
});