$(document).ready(function() {

	$('#menu ul li').hover(function() {
		$(this).children('ul').fadeIn(200);
	},function() {
		$(this).children('ul').fadeOut(100);
	});

});