(function($) {
	//gestion du menu déroulant
	$(document).ready(function() {
		$("a.desactive").click(function(event){
			event.preventDefault();
		});

    	$('#menu ul ul').css('display', 'none');
	
		$('#menu ul > li').mouseenter(function() {
			$(this).children('ul').css('display', 'block');
		});
				
		$('#menu ul > li').mouseleave(function() {
			$(this).children('ul').css('display', 'none');
		});				
	});
})(jQuery);
