$(document).ready(function(){ //Définir la fonction de clic
	//Changer le comportement hover au survol
   $('.clic, .hover').hover(function() { //mouse in
		$(this).css({
			'cursor':'pointer'
		});
		if(!jQuery.support.opacity) {
			$(this).stop();
			$(this).stop().animate(
				{ 
				'backgroundColor': '#fff'	
			}, 200);
			$(this).fadeTo(200,0.6);
		}
		else {
			$(this).stop().animate(
				{ 
				'backgroundColor': '#fff'	,
				'opacity':0.6
			}, 200);
		}

   }, function() { //mouse out
   		if(!jQuery.support.opacity) {
			$(this).stop();
			$(this).stop().animate(
	  			{ 
				'backgroundColor': '#fff'
				}, 200);
			$(this).fadeTo(200,1);
		}
		else {
			$(this).stop().animate(
				{ 
				'backgroundColor': '#fff'	,
				'opacity':1
			}, 200);
		}
   });
});
