// 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', 'de/content/camping.htm',
'Restaurant', 'de/content/restaurant.htm',
'Laden', 'de/content/laden.htm',
'Aktivitäten', 'de/content/aktivitaeten.htm',
'Situationsplan', 'de/content/situationsplan.htm target="_blank"',
'Historie', 'de/content/historie.htm',
'Fotogalerie', 'de/content/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', 'de/content/news.htm',
'Events', 'de/content/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', 'de/content/preisliste.htm',
'Buchungs- anfrage', 'de/content/buchungsanfr.htm',
'Reglement', 'de/content/reglement.htm',
'Reservierungs- bestimmungen', 'de/content/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', 'de/content/kontakt.htm',
'Anfahrt', 'de/content/anfahrt.htm',
'Team', 'de/content/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', 'de/content/aktiv-sport.htm',
'Sehenswert', 'de/content/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', 'de/content/faq.htm',
'Sitemap', 'de/content/sitemap.htm',
'Links', 'de/content/links.htm',
'Wetter', 'http://www.meteoschweiz.ch target="_blank"',
'Webcam', 'http://www.reproschicker.ch/webcam-service/assets/images/Bild-Ceneri.jpg target="_blank"'
));

