// 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';}
}

window.onload=survol;
function survol(id) {
var e = document.getElementById(id);
	for (var j = 1; j<=30; j++) {
		if (document.getElementById('item'+j)) {document.getElementById('item'+j).style.background='#007424';}
	}
if (e) {e.style.background='#007424';}
}