// write me if you have questions: web.master@male.net

// constants
var initX       = 190; // x-coordinate of top left corner of dropdown menu
var initY       = 19; // y-coordinate of top left corner of dropdown menu
var backColor   = '#999999'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'black'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 0;
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
120, // the width of current menu list
183, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
22, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'martin huf', 'martin.html target=inhalt',
'kristina mitterhauser', 'kristina.html target=inhalt',
'gerhard walter', 'gerhard.html target=inhalt',
'thomas skranc', 'beppo.html target=inhalt',
'stefan jung', 'stefan.html target=inhalt',
'hannes kurth', 'hannes.html target=inhalt'
));

menuContent [1] = 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
120, // the width of current menu list
270, // 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 (
));

menuContent [2] = new Array (
-1,
-1,
120,
265, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
22, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'repertoiere', 'repertoiere.html target=inhalt',
'programme', 'programme.html target=inhalt',
'geschichte', 'geschichte.html target=inhalt'
));

menuContent [3] = new Array (
-1,
0,
120,
347, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
22, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'diskographie', 'diskographie.html target=inhalt',
'arrangements', 'arrangements.html target=inhalt',
'download', 'download.html target=inhalt',
'fotos 2005','fotos2005.html target=inhalt',
'fotos 2003', 'fotos2003.html target=inhalt',
'fotos', 'fotos1990.html target=inhalt'
));