
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=5; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

function fontOver(id) {
	document.getElementById(id).style.backgroundColor = '#003466';
} 

function fontOut(id) {
	document.getElementById(id).style.backgroundColor = '';
}

function fontOver2(id) {
	document.getElementById(id).style.backgroundColor = '#9c3400';
} 

function fontOut2(id) {
	document.getElementById(id).style.backgroundColor = '';
}

function montrer(id) {
	document.getElementById(id).style.display = '';
} 

function cacher(id) {
	document.getElementById(id).style.display = 'none';
}

