liste_page = new Array("index.htm","index.htm","mets.htm","vins.htm","traiteur.htm","soirees.htm","acces.htm","hebergements.htm","liens.htm","presse.htm","contact.htm","recettes.htm");

function surligner_menu(n)
{
var i;
  if (n == 1)
  {
    document.getElementById("menu_1").style.backgroundColor = "rgb(255,250,250)";
    document.getElementById("tmenu_1a").style.color = "rgb(211,12,68)";      
    document.getElementById("tmenu_1b").style.color = "rgb(211,12,68)";      
    document.getElementById("tmenu_1c").style.color = "rgb(211,12,68)";      
    }
  else 
  {
    document.getElementById("menu_1").style.backgroundColor = "rgb(211,12,68)";  
    document.getElementById("tmenu_1a").style.color = "rgb(253,226,225)";      
    document.getElementById("tmenu_1b").style.color = "rgb(253,226,225)";      
    document.getElementById("tmenu_1c").style.color = "rgb(253,226,225)";      
    }


for (i=2;i<12;i++)
  if (i == n) 
  {
    document.getElementById("menu_" + i).style.backgroundColor = "rgb(255,250,250)";
    document.getElementById("tmenu_" + i).style.color = "rgb(211,12,68)";      
    }
  else 
  {
    document.getElementById("menu_" + i).style.backgroundColor = "rgb(211,12,68)"; 
    document.getElementById("tmenu_" + i).style.color = "rgb(253,226,225)";      
    }
}



function ouvrir_menu(n)
{
window.open(liste_page[n],"_self");
}

function ouvrir_info(n)
{
window.open(n,"_blank","toolbar=no , menubar=no , resizable=yes , width=500px , height=500px , status=no , scrollbars=yes");
}

function ouvrir_image_h(n)
{
window.open("../img2/" + n,"_blank","toolbar=no , menubar=no , resizable=yes , width=820px , height=620px , status=no");
}

function ouvrir_image_v(n)
{
window.open("../img2/" + n,"_blank","toolbar=no , menubar=no , resizable=yes , width=620px , height=820px , status=no");
}


