$(function(){
	$('#menu-V a').hover(function(){
		$(this).find('.effet').animate({left:'0px',opacity:'1'},{queue:false,duration:200});
	}, function(){
		$(this).find('.effet').animate({left:'170px',opacity:'0'},{queue:false,duration:200});
	});
});