var colorbg = "#336591"; //couleur de fond
var colorlien = "#FFFFFF"; //couleur du texte
var colorsel = "#6B87B6"; //couleur selection
var taillebg = 130 //largeur du menu
menutexte = new Array;
menulien = new Array;
menutarget = new Array;

menutexte[0]= "<IMG SRC='./_mmd/context_precedent.gif' border='0'> Previous"
menulien[0]= "javascript:history.go(-1)"
menutarget[0]="_self"
menutexte[1]= "Next <IMG SRC='./_mmd/context_suivant.gif' border='0'>"
menulien[1]= "javascript:history.go(1)"
menutarget[1]="_self"
menutexte[2]= "Refresh"
menulien[2]= "javascript:window.location.reload()"
menutarget[2]="_self"
menutexte[3]= ""
menulien[3]= ""
menutarget[3]=""
menutexte[4]= "Homepage"
menulien[4]= "../index_english.html"
menutarget[4]="_self"
menutexte[5]= "Our Products"
menulien[5]= "produits.html"
menutarget[5]="_self"
menutexte[6]= "Gallery"
menulien[6]= "galeries.html"
menutarget[6]="_self"
menutexte[7]= "Team MMD"
menulien[7]= "equipe.html"
menutarget[7]="_self"
menutexte[8]= "Locations"
menulien[8]= "lieux.html"
menutarget[8]="_self"
menutexte[9]= "References"
menulien[9]= "references.html"
menutarget[9]="_self"
menutexte[10]= "Newsletter"
menulien[10]= "newsletter.html"
menutarget[10]="_self"
menutexte[11]= "Download"
menulien[11]= "telechargement.html"
menutarget[11]="_self"
menutexte[12]= "Site Map"
menulien[12]= "plan.html"
menutarget[12]="_self"


function position(p)
{
position_x = (navigator.appName.substring(0,3) == "Net") ? p.pageX : event.x+document.body.scrollLeft;
position_y = (navigator.appName.substring(0,3) == "Net") ? p.pageY : event.y+document.body.scrollTop;
}
function ouvrir_menu()
{
document.getElementById("menu_context").style.top = position_y;
document.getElementById("menu_context").style.left = position_x;
document.getElementById("menu_context").style.visibility = "visible";
return(false);
}
function fermer_menu()
{
if (document.getElementById)
{
document.getElementById("menu_context").style.top = 0;
document.getElementById("menu_context").style.left = 0;
document.getElementById("menu_context").style.visibility = "hidden";
}
}
function menu_sel(selec, lienmenu)
{
if(selec == 1)
{
lienmenu.style.background = colorsel;
lienmenu.style.color = colorbg;
}
else
{
lienmenu.style.background =colorbg;
lienmenu.style.color = colorlien;
}
}
if(navigator.appName.substring(0,3) == "Net")
document.captureEvents(Event.MOUSEMOVE);
