window.addEvent('domready', function() {
	var list = $$('.rollmenu img');
	list.each(function(element) {
		var fx = new Fx.Styles(element, {duration:500, wait:false});
		element.addEvent('mouseover', function(){
		fx.start({
				'opacity': 1
			});
		});
		element.addEvent('mouseleave', function(){
			fx.start({
				'opacity': 0.1
			});
		});
	});
});

function affSgammes(id,total){
	// on ferme toutes les sous-familles
	var compteur = 1;
	while (compteur < total+1){
		document.getElementById('sg'+compteur).style.display = "none";
		document.getElementById('bt'+compteur).style.backgroundColor = "#000000";
		document.getElementById('bt'+compteur).style.marginBottom = "0px";
		compteur++; 
	} 
	// on affiche la bonne
	document.getElementById('sg'+id).style.display = "block";
	document.getElementById('bt'+id).style.backgroundColor = "#000000";
	document.getElementById('bt'+id).style.marginBottom = "5px";
}