	// Global JavaScript Document
	
	onload = function()
	{
		// Sous-menu
		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 menuOn(id) {
		document.getElementById(id).className = "menu on";
	}
	function menuOut(id) {
		document.getElementById(id).className = "menu";
	}
