	var timer;
	
function montremenu()
{
window.clearTimeout(timer);
if(document.getElementById)
{
timer = window.setTimeout("document.getElementById('amenued').style.visibility = 'hidden';", 200);
timer = window.setTimeout("document.getElementById('amenu').style.visibility = 'visible';", 200);
}
else if(document.all)
{
timer = window.setTimeout("document.all['amenued'].style.visibility = 'hidden';", 200);
timer = window.setTimeout("document.all['amenu'].style.visibility = 'visible';", 200);
}
}


function montrerien()
{
window.clearTimeout(timer);
if(document.getElementById)
{
timer = window.setTimeout("document.getElementById('amenued').style.visibility = 'hidden';", 200);
timer = window.setTimeout("document.getElementById('amenu').style.visibility = 'hidden';", 200);
}
else if(document.all)
{
timer = window.setTimeout("document.all['amenued'].style.visibility = 'hidden';", 200);
timer = window.setTimeout("document.all['amenu'].style.visibility = 'hidden';", 200);
}
}

function montretout()
	{
		window.clearTimeout(timer);
		if(document.getElementById)
		{
					timer = window.setTimeout("document.getElementById('amenued').style.visibility = 'visible';",200);
					timer = window.setTimeout("document.getElementById('amenu').style.visibility = 'visible';", 200);
		}
		else if(document.all)
		{
			timer = window.setTimeout("document.all['amenued'].style.visibility = 'visible';", 200);
			timer = window.setTimeout("document.all['amenu'].style.visibility = 'visible';", 200);
		}
	}
	

	
