$(document).ready(function () {
			// On affiche les fleches si il existe un niveau supplementaire
			$('#header li.menu-item').each(function()
			{
				if ($(this).children('ul').length != 0)
					$(this).addClass('up-menu');
			});

			$('#header li.menu-item').hover(function()
			{
				if ($(this).children('ul').is(':visible')==false)
					$(this).children('ul').slideDown('slow');
			},
			function()
			{
				if ($(this).children('ul').is(':visible')==true)
					$(this).children('ul.sub-menu').slideUp('fast');
			});
		});
