function cacher() {
	var tableau = new Array('cacher1', 'cacher2', 'cacher3', 'cacher4', 'cacher5', 'cacher6', 'cacher7', 'cacher8');
	for (valeurs in tableau) {
		document.getElementById(tableau[valeurs]).style.opacity = .3;
		document.getElementById(tableau[valeurs]).style.MozOpacity = .3;
		document.getElementById(tableau[valeurs]).style.filter = "alpha(opacity=30)";
	}
}
function cacher2() {
	var tableau = new Array('cacher1', 'cacher2', 'cacher3', 'cacher4', 'cacher5', 'cacher6', 'cacher7', 'cacher8');
	for (valeurs in tableau) {
		document.getElementById(tableau[valeurs]).style.opacity = .3;
		document.getElementById(tableau[valeurs]).style.MozOpacity = .3;
		document.getElementById(tableau[valeurs]).style.filter = "alpha(opacity=30)";
	}
}
function change(tous, affiche) {
	var tableau = tous.split('|');
	var nombre = tableau.length-1;
	var affiche = affiche.split('|');
	affiche = affiche[0];
	for (var i=0; i<=nombre; i++) {
		if ( tableau[i] != 'f'+affiche ) {
			if ( tableau[i] != '' ) {
				document.getElementById(tableau[i]).style.display = 'none';
				if ( affiche == 'aucun' ) { document.getElementById(tableau[0]).style.display = 'block'; }
			}
		}
	}
	if ( affiche != 'aucun' ) { document.getElementById('f'+affiche).style.display = 'block'; }
}