// write me if you have questions: web.master@male.net

// constants
var initX       = 100; // x-coordinate of top left corner of dropdown menu 
var initY       = 185; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFCC00'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#ffffff'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 6;
var xOverlap    = 6;
var yOverlap    = 10;
//


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
100, // the width of current menu list 
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Camping', 'fr/camping.htm',
'Restaurants', 'fr/restaurant.htm',
'Magasin', 'fr/magasins.htm',
'Activités', 'fr/activites.htm',
'Plan', 'fr/plan.htm target="_blank"',
'Histoire', 'fr/histoire.htm',
'Galerie de photos', 'fr/galerie-photos.htm'
));

menuContent [1] = new Array ( 
-1, 
-1,
100,
100, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
225, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Actualités', 'fr/actualites.htm',
'Evènements', 'fr/evenements.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
100,
100, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
265, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Prix', 'doc/lidomappo_listino.pdf target="_blank"',
'Demande de réservation', 'fr/demande-r.htm',
'Règlement', 'fr/reglement.htm',
'Conditions de réservation', 'fr/conditions-r.htm'
));

menuContent [3] = new Array ( 
-1, 
-1,
100,
100, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
305, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Contact', 'fr/contact.htm',
'Plan d´accès', 'fr/plan-acces.htm',
'Équipe', 'fr/equipe.htm'
));

menuContent [4] = new Array ( 
-1, 
-1,
100,
100, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
345, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Activités et sports', 'fr/loisirs-sports.htm',
'Lieux d intérêt', 'fr/lieux.htm'
));


menuContent [5] = new Array ( 
-1, 
-1,
100,
100, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
322, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Questions-reponses', 'fr/faq-fr.htm',
'Plan du site', 'fr/sitemap.htm',
'Liens', 'fr/links.htm',
'Météo', 'http://www.meteoschweiz.ch target="_blank"',
'Webcam', 'http://www.reproschicker.ch/webcam-service/assets/images/Bild-Ceneri.jpg target="_blank"'
));


