// 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', 'nl/camping.htm',
'Restaurant', 'nl/restaurant.htm',
'Winkel', 'nl/winkel.htm',
'Activiteiten', 'nl/activiteiten.htm',
'Situatieschets', 'nl/situatieschets.htm target="_blank"',
'Historie', 'nl/historie.htm',
'Fotogalerij', 'nl/fotogalerij.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 (
'Nieuws', 'nl/nieuws.htm',
'Evenementen', 'nl/evenementen.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 (
'Tarieven', 'doc/lidomappo_listino.pdf target="_blank"',
'Reserverings- aanvraag', 'nl/reservering.htm',
'Reglement', 'nl/reglement.htm',
'Reserverings- voorwaarden', 'nl/voorwaarden.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', 'nl/contact.htm',
'Routebeschrijving', 'nl/route.htm',
'Team', 'nl/team.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 (
'Activiteiten & sport', 'nl/activiteiten-sport.htm',
'Bezienswaardig', 'nl/bezienswaardig.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 (
'Veel gestelde vragen', 'nl/faq-nl.htm',
'Sitemap', 'nl/sitemap.htm',
'Links', 'nl/links.htm',
'Weer', 'http://www.meteoschweiz.ch target="_blank"',
'Webcam', 'http://www.reproschicker.ch/webcam-service/assets/images/Bild-Ceneri.jpg target="_blank"'
));
