$(document).ready(function(){
	$.smoothAnchors(700, "swing", false);
	
	$("a.flecheDroite").css({backgroundPosition: "0 4px"});
	
	$("a.flecheDroite").hover(function(){
		$(this).stop().animate({backgroundPosition: "3px 4px"}, "fast");
		}, function() {
		
		$(this).stop().animate({backgroundPosition: "0px 4px"}, "fast");
	});
});