function initBulle()
{
	//  puis on montre le menu et on le remet à 0 
	document.getElementById("arbor_pan").style.visibility = 'visible';
	document.getElementById("arbor_pan").style.display = 'block';
	document.getElementById("arbor_pan").scrollTop = 0;
}

function montreBulle()
{
	document.getElementById("arbor_pan").style.visibility = 'visible';
	document.getElementById("arbor_pan").scrollTop = 0;
}

function cacheBulle()
{
    // on cache tous les menus
    document.getElementById("arbor_pan").style.visibility = 'hidden';
    document.getElementById("arbor_pan").style.display = 'none';
    
 }
