function toggleChapoTexte()
{
	$("a.show").click(function(){
		var id = this.id.substring(2);
		var msg = "Lire la suite";
		if ($(this).html() == msg) {
			$(this).html("Masquer");
		}
		else {
			$(this).html(msg);
		}
		var texte_id 	= "div#texte_" + new String(id);
		$(texte_id).slideToggle("slow");
		return false;
	});
	$("a.show2").click(function(){
		var id = this.id.substring(2);
		var msg = "Lire la suite";
		if ($(this).html() == msg) {
			$(this).html("Masquer");
		}
		else {
			$(this).html(msg);
		}
		var texte_id 	= "div#texte2_" + new String(id);
		$(texte_id).slideToggle("slow");
		return false;
	});
	
}

/**
	Gestionnaire pour CCIRelais
*/
function toggleChapoTexteCompteur()
{
	$("a.show").click(function(){
		var id = this.id.substring(2);
		var msg = "Lire la suite";
		if ($(this).html() == msg) {
			$(this).html("Masquer");
			$.ajax({
					type: 	"POST",
					url: 	"http://www.arles.cci.fr/ecrire/?exec=ccipa_relais&controller=public&action=ajax_tracker",
					cache: 	false,
					async: 	false,
					data: 	"link=" + id
					
			});
		}
		else {
			$(this).html(msg);
		}
		var texte_id 	= "div#texte_" + new String(id);
		$(texte_id).slideToggle("slow");
		return false;
	});
	
}
