$(
	function()
	{
		$("#menu ul ul").hide();
		$("#menu li").hover(function()
			{
				//setTimeout(function(){$(e).children("ul").slideDown(500);}, 500);
				$(this).children("ul").slideDown(500);
			}, function(){}
		);

		// Close the tree when the #menu blurs
		$("#menu").hover(
			function() {},
			function(){$("#menu ul li").children("ul").slideUp(500);}
		);
	}
);
