/***************************************************************/
/*
/*
/*
/*
/***************************************************************/

//Appel du plugin jquery color
/*$.ajax({
	url: "js/coloranimation.js",
	dataType: "script",
	async: false,
	success: function(js){if(jQuery.browser.safari){eval(js);}}
});*/


$(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);

   });
   
 });





