// 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 (
'Campeggio', 'it/campeggio.htm',
'Ristorante', 'it/ristorante.htm',
'Supermercato', 'it/negozio.htm',
'Attivitą', 'it/animazione.htm',
'Piano die situazione', 'it/piano.htm target="_blank"',
'La storia', 'it/storia.htm',
'Galleria fotografica', 'it/fotogalerie.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 (
'News', 'it/news.htm',
'Events', 'it/events.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 (
'Listino prezzi', '//www.lidomappo.ch/doc/lidomappo_listino.pdf target="_blank"',
'Richiesta di prenotazione', 'it/prenotazione.htm',
'Regolamento', 'it/regolamento.htm',
'Condizioni di prenotazione', 'it/condizioni.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 (
'Contatto', 'it/contatto.htm',
'Cartina d ubicazione', 'it/ubicazione.htm',
'Team', 'it/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 (
'Attivitą e sport', 'it/animazione-sport.htm',
'Da visitare', 'it/perdere.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 (
'Domande frequenti', 'it/faq-it.htm',
'Mappa del sito', 'it/mappa-sito.htm',
'Links', 'it/links.htm',
'Meteo', 'http://www.meteoschweiz.ch target="_blank"',
'Webcam', 'http://www.reproschicker.ch/webcam-service/assets/images/Bild-Ceneri.jpg target="_blank"'
));
