// JavaScript Document

//window.onload = montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {
			document.getElementById('smenu'+i).style.display='none';
		}
	}
	
	if (d) {
		d.style.display='block';
	}
}

function changerFond(id) {
	
	var d = document.getElementById(id);
	if (d) {
		d.style.backgroundColor='#eaeaea';
		d.style.color='#003366';
		d.style.backgroundImage='none';
	}	
}