$(function(){
		$('#menu.slide>ul>li').hover(function(){
			$(this).children('ul').stop(true, true);
			$(this).children('ul').slideDown('fast');
		},function(){			
			$(this).children('ul').slideUp('fast');
		});
});
