// Masquage d un partenaire
function hide_part() {
	for (var i = 1; i <= 8; i++) {
		if (document.getElementById('part_m'+i)) {
			document.getElementById('part_l'+i).className = 'part_l_off';
			document.getElementById('part_m'+i).className = 'part_onglet_off';
			document.getElementById('part_r'+i).className = 'part_r_off';
		}

		if (document.getElementById('part_'+i)) {
			document.getElementById('part_'+i).style.display = 'none';
		}
	}
}

// Affichage d un partenaire
function view_part(id) {
	var d1 = document.getElementById('part_l'+id);
	var d2 = document.getElementById('part_m'+id);
	var d3 = document.getElementById('part_r'+id);

	var d4 = document.getElementById('part_'+id);

	hide_part();

	if ( d2 && d4) {
		d1.className = 'part_l_on';
		d2.className = 'part_onglet_on';
		d3.className = 'part_r_on';
		d4.style.display = 'block';

	}
}
