$(function(){
	$('#menu-v a').hover(function(){
		$(this).find('.effet').animate({width:'225px',opacity:'1'},{queue:false,duration:300});

	}, function(){
		$(this).find('.effet').animate({width:'0px',opacity:'0.2'},{queue:false,duration:300});
	});
});



$(function(){
	$('#sous-navigation .fx').hover(function(){
		$(this).find('img').animate({opacity:'0.5'},{queue:false,duration:300});

	}, function(){
		$(this).find('img').animate({opacity:'1'},{queue:false,duration:300});
	});
});

$(function(){
	$('#sous-navigation .fx').hover(function(){
		$(this).find('strong').animate({top:'107px',opacity:'1'},{queue:false,duration:300});

	}, function(){
		$(this).find('strong').animate({top:'80px',opacity:'0'},{queue:false,duration:300});
	});
});

$(function(){
	$('#lien-flash').hover(function(){
		$(this).animate({opacity:'0.7'},{queue:false,duration:400});

	}, function(){
		$(this).animate({opacity:'0'},{queue:false,duration:400});
	});
});