$(function(){
	$('#menu-V a').hover(function(){
		$(this).find('.effet').animate({width:'185px',opacity:'0.8'},{queue:false,duration:300});
	}, function(){
		$(this).find('.effet').animate({width:'0px',opacity:'0.2'},{queue:false,duration:300});
	});
});