$().ready(function() {
		$('a').click(function() {
			$.get(
				'compteur.php',
				{
	   			type_lien:	$(this).attr('type_lien'),
				  id_offre:	$(this).attr('id_offre')
        }
			);
		});
	});
