$(document).ready(function(){ //Définir la fonction de clic
 
	
	//Changer le comportement hover au survol
   $('.clic').hover(function() { //mouse in
			$(this).stop();
			$(this).fadeTo(200,0.6);


   }, function() { //mouse out

			$(this).stop();
			$(this).fadeTo(200,0.9);

   });
   
 });





