/* Menu principal 2 en haut */ 
$(document).ready(function() {
	$("ul.menu2010princ2 > li > ul").css( {
		display: "none",
		top: "42px"
	});
	$("ul.menu2010princ2 > li").hover(function() {
		$(this)
			.find("ul")
			.stop(true, true)
			.slideDown("fast");
	}, function() {
		$(this)
			.find("ul")
			.stop(true, true)
			.fadeOut("fast");
	});			
});

/* Menu principal 1 en bas */ 
$(document).ready(function() {
	$("#entetemenu ul.menu2010princi > li > ul").css( {
		display: "none",
		top: "42px"
	});
	$("#entetemenu ul.menu2010princi > li").hover(function() {
		$(this)
			.find("ul")
			.stop(true, true)
			.slideDown("fast");
	}, function() {
		$(this)
			.find("ul")
			.stop(true, true)
			.fadeOut("fast");
	});
	
});
