//14_02_2006 violy.net
window.onload=montre;
function cache(){
id_cache="";
setTimeout('montre(id_cache)',300);
}
function montre(id) {
id_cache=id;
var d = document.getElementById(id_cache);
	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';}
}