 
$(document).ready(function(){
	// MENU DU HAUT
	$("ul.niveau-1 li").hover(
		function() {
			$('ul.niveau-2', this).show();
		},
		function(){	
			$('ul.niveau-2', this).hide();
		}
	);
});
