window.onload=montre;
display=true;
var timer;
var old_id=0;




function ma_fonction()
	{
		if (display==false)
			{
				montre();
			}
	}

function relance_timer()
	{
		clearTimeout(timer);
		timer = setTimeout("ma_fonction()", 800);
	}
	
function hide() {
document.getElementById('marque_imprimante').className="invisible";
document.getElementById('ref_imprimante').className="invisible";
}
function timershow()	{
	setTimeout("show()", 800);
}
function show() {
document.getElementById('marque_imprimante').className="visible";
document.getElementById('ref_imprimante').className="visible";
}

function montre(id) {
var d = document.getElementById(id);
if (old_id!=0)
	{
		document.getElementById('smenu'+old_id).style.display='none';
		old_id=id;
	}
	/*for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}*/
if (d) {d.style.display='block';Change_objet(id,212);}
else old_id=0;
}