$(document).ready(
function()
{
	$('#menu > li').hover(
	function()
	{
		$(this).children().next().fadeIn('normal');
    },
	function()
	{
		$(this).children().next().fadeOut(1);
    });



}
);
