
// MENU DE GAUCHE 
// merci à Xavier Borderie pour sa fonction afficheId, qui est ici légèrement modifiée. http://developpeurs.journaldunet.com

function afficheId(baliseId)
  {
  cacheId('menu-description');
  cacheId('menu-meubles');
  cacheId('menu-salle');
  cacheId('menu-proximite');
  cacheId('menu-contact');
  if (document.getElementById && document.getElementById(baliseId) != null)
    {
    document.getElementById(baliseId).style.visibility='visible';
    document.getElementById(baliseId).style.display='block';
    }
  }

function cacheId(baliseId)
  {
  if (document.getElementById && document.getElementById(baliseId) != null)
    {
    document.getElementById(baliseId).style.visibility='hidden';
    document.getElementById(baliseId).style.display='none';
    }
  }

function affichePhoto(photoSrc)
  {
  if (document.getElementById && document.getElementById('zone-centrale') != null)
    {
    document.getElementById('photo').src=photoSrc;
    document.getElementById('zone-centrale').style.visibility='visible';
    document.getElementById('zone-centrale').style.display='block';
    }
  }
