$(function(){
   $('.lien').hover(function() { //mouse in
   		$(this).stop().animate({ opacity: '0.9' }, 300);
   }, function() { //mouse out
    	$(this).stop().animate({ opacity: '1' }, 300);
   });   
});