$(document).ready(function() {
	$('#menu ul li').hover(function() {
		$(this).children('ul').hide().stop(true, true).slideDown(200);
	}, function() {
		$(this).children('ul').stop(true, true).slideUp('fast').hide();
	});

						 
 });
							
