$(document).ready(function() {
	$("#tourisme_fluvial").mouseenter(function() {
		$("#sub_tourisme_fluvial").slideDown('medium');
		$(this).css("cursor", "pointer");
	})
	.mouseleave(function() {
		$("#sub_tourisme_fluvial").css("display", "none");
	});
	
	$("#menu li").filter(":not(#menu li ul li)").mouseenter(function() {
		$(this).css("background-color", "#a9c511");
	})
	.mouseleave(function() {
		$(this).css("background-color", "transparent");
	});
});