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


   }, function() { //mouse out
			$(this).stop().animate(
				{
				'opacity':1
			}, 200);
   });
   var text="";
	$(".page_detail").each(function(){
		text=$(this).find("a").html();
		$(this).empty();
		$(this).html(text);
	});
});




