function aff_icon(n,nb)
	{
		for(i=1; i<=nb; i++)
			{
				if (i!=n)
					{
					$("#desc_icon" + i + ":visible").hide();	
        		   }
    	   }
  $("#desc_icon" + n + ":hidden").fadeIn();
  }

function msk_icon(n)
	{
  $("#desc_icon" + n + ":visible").fadeOut(); 
  }
