
function ShowInfoMateriaux (id) {
	// $("MenuMatieresCouleurs").update( "&nbsp;&nbsp;Choisir&nbsp;&nbsp;" );
	$('MenuMatieresCouleurs').style.backgroundImage = 'url(images/hover-menu.png)';					
	// if ( $(id).style.opacity < 0.97 ) new Effect.Opacity(id, {from: 0, to: 0.97});
	$(id).style.display="block";
}
function HideInfoMateriaux (id) {
	// $("MenuMatieresCouleurs").update( "Catalogue" );
	$('MenuMatieresCouleurs').style.backgroundImage = 'none';	
	// if ( $(id).style.opacity > 0 ) new Effect.Opacity(id, {from: 0.97, to: 0});
	$(id).style.display="none";	
}
