// write me if you have questions: 

// 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', 'camping.htm',
'Restaurant', 'restaurant.htm',
'Laden', 'laden.htm',
'Aktivitäten', 'aktivitaeten.htm',
'Situationsplan', 'situationsplan.htm target="_blank"',
'Historie', 'historie.htm',
'Fotogalerie', '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', 'news.htm',
'Events', '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 (
'Preise', 'preisliste.htm',
'Buchungs- anfrage', 'buchungsanfr.htm',
'Reglement', 'reglement.htm',
'Reservierungs- bestimmungen', 'r-bestimmungen.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 (
'Kontakt', 'kontakt.htm',
'Anfahrt', 'anfahrt.htm',
'Team', '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 (
'Aktivitäten & Sport', 'aktiv-sport.htm',
'Sehenswert', 'sehenswert.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 (
'Häufige Fragen', 'faq.htm',
'Sitemap', 'sitemap.htm',
'Links', 'links.htm',
'Wetter', 'http://www.meteoschweiz.ch target="_blank"',
'Webcam', 'http://www.reproschicker.ch/webcam-service/assets/images/Bild-Ceneri.jpg target="_blank"'
));

