/* Menu principal */ 
$(document).ready(function() {
	$("#menu_conteneur .menujeunes ul > li > ul").css( {
		display: "none",
		top: "49px"
	});
	$("#menu_conteneur .menujeunes ul > li").hover(function() {
		$(this)
			.find("ul")
			.stop(true, true)
			.fadeIn("fast");
	}, function() {
		$(this)
			.find("ul")
			.stop(true, true)
			.fadeOut("fast");
	});			
});
