<!-- window.onload=montre; alert (c[i]);-->
function montre(id) 
{
var d = document.getElementById(('smenu'+id));
c=new Array();
c[1]= "#ffcccc";
c[2]= "#ffcccc";
c[3]= "#ffcccc";
c[4]= "#ffcccc";
c[5]= "#ffcccc";
c[6]= "#ffcccc";
c[7]= "#ffcccc";
c[8]= "#ffcccc";
c[9]= "#ffcccc";
	 for (var i = 1; i<=10; i++) 
	 {
		if (document.getElementById('smenu'+i)) 
			{
			document.getElementById('smenu'+i).style.display='none';
			document.getElementById('smenu'+i).style.backgroundColor=c[i];
			document.getElementById(('menu'+i)).style.backgroundColor='#fff';
			}		
	}
	if (d) 
		{
		d.style.display='block';
		document.getElementById(('menu'+id)).style.backgroundColor=c[id];
		
		}
}