// fonctions menus
window.onload=montre;
function montre(id) {
	var d = document.getElementById(id);
	var e = document.getElementById('div_'+id);
	for (var i = 1; i<=7; i++) {
		if (document.getElementById('smenu'+i)) {
			document.getElementById('smenu'+i).style.display='none';
			document.getElementById('smenu'+i).style.background='none';
			document.getElementById('div_smenu'+i).style.background='none';
			}
	}
if (d) {
	d.style.display='block';
	d.style.background='white url(./_img/bg_smenu.gif) repeat-x 0 -30px';
	if (e) { e.style.background='url(./_img/bg_smenu.gif) repeat-x top left'; }
	}
}
