$(document).ready(function(){

	$.smoothAnchors(700, "swing", true);
	

	$(".flecheDroite")
	.css({backgroundPosition: "0 center"})
	.hover(function(){
		$(this).stop().animate({backgroundPosition: "3px center"}, 100);
		}, function() {
		
		$(this).stop().animate({backgroundPosition: "0px center"}, 100);
	});


});
