// JavaScript Document

/*window.onload=montre;*/
function montre(id,zone) { 
	var d = document.getElementById('s'+id);
	var t = document.getElementById(id);
	var k = document.getElementById(zone);
	for (var i = 1; i<=3; i++) {
		if (document.getElementById('menu'+i) && 'menu'+i!=zone) {
				document.getElementById('menu'+i).style.backgroundColor='#7e7e80';}
		if (document.getElementById('smenu'+i)) {
				document.getElementById('smenu'+i).style.display='none';}
	}
	if (d) {d.style.display='block';}
	switch(zone){
			case 'menu1': k.style.backgroundColor='#00B5DF'; break;
			case 'menu2': k.style.backgroundColor='#5BBA4F'; break;
			case 'menu3': k.style.backgroundColor='#589AD3';
	}
	switch(id){
			case 'menu1': t.style.backgroundColor='#00B5DF'; break;
			case 'menu2': t.style.backgroundColor='#5BBA4F'; break;
			case 'menu3': t.style.backgroundColor='#589AD3';
	}
}