$(document).ready(function() {
						   
	$("#menu:first-child > li").mouseenter(function()
	{
		$("ul",this).stop(true,true);
		$("ul",this).slideDown(200);
	})
	.mouseleave(function()
	{
		$("ul",this).stop(true,true);
		$("ul",this).slideUp(200);
	})

});
