window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=11; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
function menuOn(id){
try{
  //document.getElementById(id).style.backgroundColor = 'RGB(196, 250, 250)';
  document.getElementById(id).style.color = '#fff'; // 'RGB(196, 250, 250)';
  var m = 'dtMenu' + id.substring(4,6);
  document.getElementById(m).style.backgroundImage = 'url(\'img/menu-c-on.gif\')';
  }
  catch (ex){return(false);}
}

