$(document).ready(function(){
	
	
	$.smoothAnchors(700, "swing", true);
	
	$(".listeLiens li a")
	.css({backgroundPosition: "0 center"})
	.hover(function(){
		$(this).stop().animate({backgroundPosition: "3px center"}, 100);
		}, function() {
		
		$(this).stop().animate({backgroundPosition: "0px center"}, 100);
	});
	
	$(".flecheDroite")
	.css({backgroundPosition: "0 center"})
	.hover(function(){
		$(this).stop().animate({backgroundPosition: "3px center"}, 100);
		}, function() {
		
		$(this).stop().animate({backgroundPosition: "0px center"}, 100);
	});
	
	$("#introBlog").corner("5px");
	$("#commentaires li").corner("5px");

});


