var a;

function montre(id) {
	
	if (document.getElementById) {
			document.getElementById(id).style.visibility="visible";
	} else if (document.all) {
			document.all[id].style.visibility="visible";
	} else if (document.layers) {
			document.layers[id].visibility="visible";
	}
	clearTimeout(a);
}

function cache(id) {
	string="Affiche('"+id+"');";
	a = setTimeout(string,500);
	
}


function Affiche(id){
	if (document.getElementById) {
		document.getElementById(id).style.visibility="hidden";
	} else if (document.all) {
		document.all[id].style.visibility="hidden";
	} else if (document.layers) {
		document.layers[id].style.visibility="hidden";
	}
}

function montrerSuite(id)
{
	 $('#'+id).show();
	 $('#olien_'+id).hide();
}

function fermerSuite(id)
{
	 $('#'+id).hide();
	 $('#flien_'+id).hide();
	 $('#olien_'+id).show();
	 
}
