$(document).ready( function() {	
	// Survol du menu
	$("#menu_vert ul li").hover( function () {
		$(this).addClass("menusel");
		/*
		var menu_pos = $("#menu").offset();
		var item_pos = $(this).offset();
		$(this).find(".unli").css("left", (item_pos.left - menu_pos.left + 2) + "px");
		*/
		$(this).find(".unli").fadeIn("fast");
	},
	function () {
		$(this).removeClass("menusel");
		$(this).find(".unli").fadeOut("fast");
	});
});
