/*********************************************
  pilouWebSite.js - Création 12/12/2005
 --------------------------------------------
  Script contenant l'ensemble des javascripts
  du site de Pilou et Céline.
      - affichage dynamique du menu
	  - ajout systématique d'un encart "contact"
	  - consultation dynamique de photos
	  - ajout systématique de mots clefs en footer
  --------------------------------------------
  OPO - Dernière MAJ : 30/03/2010 
**********************************************/

//--------------------
// Appel : toutes les pages
// Colore l'onglet (la cellule) du menu correspondant à la page courante
function ca(colo,qui){
  qui.style.backgroundColor=colo;
  }


//--------------------
// Appel : Page webcam
// Insère l'image de la webcam dans la page
function addwebcamLink(){
	  onLine=true;  //  <------------------------------------------- TRUE / FALSE
	  ipPilou='brevardiere.home.dyndns.org';

		if (onLine==false) {
			wcMessage = 'En construction ... <br>';
			wcLink = '<img src="./images/webcam/offline320x240.gif" >';

        } else 	{
			wcMessage = 'Le mazot et Chamechaude en fond.<br>';
		    wcLink = '<a href="http://'+ipPilou+'/snapshot?profile=1" target=other><img src="http://'+ipPilou+'/snapshot?profile=2" ></a>';
		}

  		document.write('			<table width="600" border="0">');
        document.write('                  <tr>');
        document.write('                    <td >  ');
        document.write('                       '+wcMessage);
		document.write('					</td>');
        document.write('                  </tr>');
        document.write('                  <tr>');
        document.write('                    <td >  ');
		document.write('                       '+wcLink);
		document.write('					</td>');
        document.write('                  </tr>');
        document.write('            </table>');

  
  }




//--------------------
// Appel : toutes les pages
// Ajout du paneau contact
function addContact(){
  //document.write('<center>N&rsquo;h&eacute;sitez pas &agrave; nous appeler pour plus de renseignements : <br />  T&eacute;l&eacute;phone / Fax : <br><span class="Style-telMail"><b>04 76 88 60 49</b></span> <br /> ou par email : <a href="mailto:brevardiere@orange.fr" class="Style-telMail">brevardiere@orange.fr</a></center>');
document.write('<TABLE cellSpacing=0 cellPadding=0 width=186 border=0>');
document.write('<TR>');
document.write('<TD width=8 height=25><IMG height=25 src="./images/site/boxtopleft06202002.gif" width=8></TD>');
document.write('<TD class="contactTitre" width=170 background=./images/site/boxtop06202002.gif height=25>Pour plus de renseignements</TD>');
document.write('<TD width=8 height=25><IMG height=25 src="./images/site/boxtopright06202002.gif" width=8></TD></TR>');
document.write('<TR vAlign=top align=left>');
document.write('<TD width=8 background=./images/site/boxleft06102002.gif> </TD>');
document.write('<TD width=170 class="contact">');
document.write('<center>N&rsquo;h&eacute;sitez pas &agrave; nous joindre <br /><br />  T&eacute;l&eacute;phone / Fax : <br><span class="Style-telMail"><b>04 76 88 60 49</b></span> <br /> ou par email : <a href="mailto:brevardiere@orange.fr" class="Style-telMail">brevardiere@orange.fr</a></center>');
document.write('</TD>');
document.write('<TD width=8 background=./images/site/boxright06102002.gif> </TD></TR>');
document.write('<TR vAlign=top align=left>');
document.write('<TD><IMG height=8 src="./images/site/boxbottomleft06102002.gif" width=8></TD>');
document.write('<TD width=170 background=./images/site/boxbottom06102002.gif></TD>');
document.write('<TD><IMG height=8 src="./images/site/boxbottomright06102002.gif" width=8></TD></TR></TABLE>');

}





//--------------------
// Appel : toutes les pages
// Ajout de la cellule TITRE en haut de page
function addCelluleTitre(){
	document.write('<td width="565" background="./images/bandeauHaut.jpg" bgproperties=fixed>');
    
	
	
	urlEnCours=document.location.toString();
    // Cas on l'URL est la racine /
    if (urlEnCours.indexOf("html") == -1) {
	  urlEnCours="index";
    }

	  //--- ACCUEIL
	leFichier="index";
	leLibelle="La ferme de Br&eacute;vardi&egrave;re";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Accueil");</SCRIPT>');
    }

	  //--- RESTAU
	leFichier="restau";
	leLibelle="Le restaurant et les alentours";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Restau");</SCRIPT>');
    }

	  //--- MENUS
	leFichier="menus";
	leLibelle="Les menus";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Menu");</SCRIPT>');
    }
	  //--- Evenement
	leFichier="evenements";
	leLibelle="Vos &eacute;v&egrave;nements";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Menu");</SCRIPT>');
    }

	  //--- Piquenique
	leFichier="picnic";
	leLibelle="Pique-nique";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Menu");</SCRIPT>');
    }


	  //--- RANDONNEES
	leFichier="aem";
	leLibelle="Randonn&eacute;es en montagne";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Rando");</SCRIPT>');
    }

	  //--- INFOS
	leFichier="infos";
	leLibelle="Informations pratiques";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Infos");</SCRIPT>');
    }

	  //--- LIENS
    leFichier="liens";
    leLibelle="Liens";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Infos");</SCRIPT>');
    }

	  //--- PHOTOS
	leFichier="photos";
	leLibelle="Les photos";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Photos");</SCRIPT>');
    }

	  //--- ROUTARD
	leFichier="routard";
	leLibelle="Recommandations";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Photos");</SCRIPT>');
    }

	  //--- WEBCAM
	leFichier="webcam";
	leLibelle="La webcam de la Brévardière";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Photos");</SCRIPT>');
    }

	  //--- Safrancham
	leFichier="safrancham";
	leLibelle="Safran de Chamechaude";
    if (urlEnCours.indexOf(leFichier) != -1) {
		document.write('<p align="center" class="Style-titre"><strong>'+leLibelle+'</strong></p>');
		//document.write('<SCRIPT LANGUAGE="JavaScript">addMenu("Photos");</SCRIPT>');
    }


// debut -- Congés annuels
		afficheDateConges=false;   //  <----------------- TRUE / FALSE
		if (afficheDateConges==true) {
			lesDatesConges="<br />du 21 septembre au samedi 2 octobre 2010 ";
			document.write('<table border="0" align="center" bgcolor="#fef008"><tr><td bgcolor="#fef008"><center><span class="Style-texteVertIntro">');
			document.write('Cong&eacute;s annuels : l\'auberge sera ferm&eacute;e '+lesDatesConges);
			document.write('</span></center></td></tr></table>');
		}
// fin   -- Congés annuels

	document.write('</td>');


  }



//--------------------
// Appel : photos.html
// Permet le changement des photos et légendes lors du clic sur les imagettes
function changeImage(filename, legende){
  document.mainimage.src = filename;
  document.getElementById("legendeIMG").innerHTML = legende;
  }





//--------------------
// Appel : toutes les pages
// Ajout des motClef
function addKeyword(){
  //document.write('<p align="center" class="Style-visites"><img src="http://pages.perso.wanadoo.fr/client/php/compteur.php?url=brevardiere&df=accueil&dd=E&frgb=000000&ft=0&tr=y&md=4&pad=n&comma=n"> visites sur le site.</p>');
  // debut
  document.write('<p align="center" class="Style-motsClef">');
  // RESTO
  document.write('repas, ferme, auberge, resto, restau, restaurant, restaurants, sympa, authentique, cuisine, découverte, calme');
  // RANDO
  document.write(', raquette, raquettes, neige, accompagnateur, rando, randonnées, randonnée, guide, balade, balades, foret');
  // GEO
  document.write(', chartreuse, alpes, isère, savoie, france, montagne, saint, st, hugues, pierre, st-hugues, saint-hugues, st-pierre, saint-pierre, brevardiere, brévardière');
  // WEB
  document.write(', http://www.brevardiere.fr');
  // fin
  document.write('</p>');
  }



//--------------------
// Appel : toutes les pages
// Ajout les infos en marge gauche
function addMargeGauche(){

 // initialise la variable numImage 
 var numImage = 3; //Routard




  urlEnCours=document.location.toString();
  // Cas ou l'URL est la racine /
  if (urlEnCours.indexOf("html") == -1) {
	  urlEnCours="index";
  }

  //document.write('   <td valign="top" background="./images/margeG.jpg" bgproperties="fixed">');
  document.write('   <td valign="top">');
  
  document.write('			    <table width="170" border="0" align="left" cellspacing="20">');


    //--- ACCUEIL
  leFichier="index";
  leLibelle="Accueil";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');

  //--- RESTAU
  leFichier="restau";
  leLibelle="Restaurant";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  //var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- MENUS
  leFichier="menus";
  leLibelle="Menus";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  //var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- EVENEMENT
  leFichier="evenements";
  leLibelle="Vos &eacute;v&egrave;nements";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  //var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- PIQUE NIQUE
  leFichier="picnic";
  leLibelle="Pique-nique";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  var numImage = 4; // Picnic
	  //var numImage = 1; //fenètre
	  //var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- RANDONNEES
  leFichier="aem";
  leLibelle="Randonn&eacute;es";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  var numImage = 1; //fenètre
	  //var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');



      //--- INFOS
  leFichier="infos";
  leLibelle="Infos pratiques";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');

	  
	  //--- LIENS
  leFichier="liens";
  leLibelle="Liens";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- PHOTOS
  leFichier="photos";
  leLibelle="Galerie photos";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- WEBCAM
  leFichier="webcam";
  leLibelle="Webcam";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


      //--- SAFRANCHAM
  leFichier="safrancham";
  leLibelle="Safran de Chamechaude";

  document.write('                <tr>');
  document.write('                  <td bgcolor="#FFFFFF" onmouseover="ca(\'#EEEEEE\',this);" ');
  document.write('                  	                    onmouseout="ca(\'#FFFFFF\',this);" ');
  if (urlEnCours.indexOf(leFichier) != -1) {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenuSelect" >&nbsp;&raquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
	  //var numImage = 0; //Fromage + vin
	  //var numImage = 1; //fenètre
	  var numImage = 2; //cheminée

  }
  else {
	  document.write('                  	                    onClick="window.location.href=\''+leFichier+'.html\'" ');
	  document.write('                  	                    style="cursor :pointer;"');
	  document.write('                  	                    align="left">');
	  document.write('                		<span class="Style-puceMenu" >&nbsp;&rsaquo;&nbsp;</span>');
	  document.write('                  		<span class="Style-MenuText"> <a href="'+leFichier+'.html">'+leLibelle+'</a></span>');
  }

  document.write('                 	</td>');
  document.write('                </tr>');


document.write('<tr><td><br><center><span class="Style-MenuText"> <a href="http://cuisine-chartreuse.blogspot.com/" target="_blank">Les recettes de Céline sur le blog <br>"Cuisine d\'en haut"</a></span></center><br></td></tr>');
 
		//* Affichage FIXE de l'image en dessous du logo de mots clef
		var theImages = new Array();
		theImages[0] = './images/DSC02525-150.JPG'; //Fromage + vin
		theImages[1] = './images/DSC01301-150.JPG'; // fenètre
		theImages[2] = './images/DSC02307-150.JPG'; // Cheminée
		theImages[3] = './images/routard-plaque.jpg'; // Routard
		theImages[4] = './images/P8053944_LT.jpg';  // picnic
		document.write('<tr><td><center><img src="'+theImages[numImage]+'" align="center"></center></td></tr>');

  document.write('              </table>');
  document.write('           </td>');



  }

//--------------------
// Appel : photos.html
// Permet le changement des photos et légendes lors du clic sur les imagettes
function addPhotosBas(){
document.write('	                  <table width="565"  bgcolor="#FFFFFF">');
document.write('                    <tr border="3" bordercolor="#000000" >');
document.write('                      <td width="16%" bgcolor="#000000"><a href="./menus.html"><img src="images/DSC02567-carre100.JPG" alt="Céline, en cuisine" width="94" height="94" border="0"></a></td>');
document.write('                      <td width="16%" bgcolor="#000000"><a href="./menus.html"><img src="images/DSC02293-carre100.JPG" alt="pain maison" width="94" height="94" border="0"></a></td>');
document.write('                      <td width="16%" bgcolor="#000000"><a href="./menus.html"><img src="images/DSC02294-carre100.JPG" alt="Le potager" width="94" height="94" border="0"></a></td>');
document.write('                      <td width="16%" bgcolor="#000000"><a href="http://www.chartreuse.fr/" target=other><img src="images/DSC01690-carre100.JPG" alt="Liqueur" width="94" height="94" border="0"></a></td>');
document.write('                      <td width="16%" bgcolor="#000000"><a href="./picnic.html"><img src="images/PiqueNique_Carre.jpg" alt="Pique-nique" width="94" height="94" border="0"></a></td>');
document.write('                      <td width="16%" bgcolor="#000000"><a href="./aem.html"><img src="images/DSC00379-carre100.JPG" alt="Philippe, A.E.M." width="94" height="94" border="0"></a></td>');
document.write('                    </tr>');
document.write('                    <tr>');
document.write('                      <td><div align="center" class="Style-petitsLiensBas"><a href="./menus.html">C&eacute;line, en cuisine</a></div></td>');
document.write('                      <td><div align="center" class="Style-petitsLiensBas"><a href="./menus.html">Pain maison </a></div></td>');
document.write('                      <td><div align="center" class="Style-petitsLiensBas"><a href="./menus.html">Le potager </a></div></td>');
document.write('                      <td><div align="center" class="Style-petitsLiensBas"><a href="http://www.chartreuse.fr/" target=other>Liqueur</a></div></td>');
document.write('                      <td><div align="center" class="Style-petitsLiensBas"><a href="./picnic.html">Pique-nique</a></div></td>');
document.write('                      <td><div align="center" class="Style-petitsLiensBas"><a href="./aem.html">Philippe, A.E.M. </a></div></td>');
document.write('					</tr>');
document.write('                  </table>');

  }


