function showContent(id, nbrOffre) {
	
	var DejaOuverte = false;
	
	/* SI LA BOX ÉTAIT OUVERTE, IL NE FAUT PAS LA RÉ-OUVRIR */
	if(document.getElementById("h3_" + id).style.color == "white") { DejaOuverte = true; }
	
	/* FERME TOUTES LES BOX */
	for(i=1; i < nbrOffre; i++) {
		if(document.getElementById("h3_" + i).className == "boxOuverte" || document.getElementById("h3_" + i).className == "couleurPaire boxOuverte") {

			$("#offre_" + i).hide("slow");
            $('#h3_' + i).removeClass('boxOuverte');

		}
	}
	
	/* OUVRE LA BOX SI ELLE ÉTAIT FERMÉE */

	if(DejaOuverte == false) {
		$("#offre_" + id).show("slow");
		$('#h3_' + id).addClass('boxOuverte');
	}
}


function OuvrirTirroirs(start, nombre) {

	/* OUVRE TOUTES LES BOX */
	nombre = parseInt(nombre) + parseInt(start);
	for(i=start; i < nombre; i++) {
		$("#offre_" + i).show("slow");
		$('#h3_' + i).addClass('boxOuverte');
	}
		
	
}

function FermerTirroirs(start, nombre) {
	/* FERME TOUTES LES BOX */
		nombre = parseInt(nombre) + parseInt(start);
		for(i=start; i < nombre; i++) {
				$("#offre_" + i).hide("slow");
				$('#h3_' + i).removeClass('boxOuverte');
		}
	
}