$(document).ready(function()
{
	$('ul.menu ul').each(function()
	{
		var ulCurrent = this;
		$(this).parents('li:eq(0)').hover(function()
		{
			$(ulCurrent).fadeIn("slow");
			$(this).css('overflow', 'visible');
		},
		function()
		{
			$(ulCurrent).fadeOut("slow");
			$(this).css('overflow', 'hidden');			
		});
	});
});
