function doMenu()
{
	$("div#menu ul li").hover(function(){
			$(this).children("ul").show();
			if ($(this).children("ul").is(":animated"))
				$(this).children("ul").stop();
			$(this).children("ul").fadeTo("medium",0.85);									 
	},function(){
			if ($(this).children("ul").is(":animated"))
				$(this).children("ul").stop();
			$(this).children("ul").fadeTo("medium",0,hideCall);
	});
}

function hideCall()
{
		$(this).parent().children("ul").hide();		
}
