// write me if you have questions: web.master@male.net

// constants
var initX       = 181; // x-coordinate of top left corner of dropdown menu 
var initY       = 115; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#CECECE'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#000000'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 10;
var xOverlap    = 5;
var yOverlap    = 5;
//


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 
565, // 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 (
'Video on Demand', 'javascript:openWin(\'http://www1.alexander-verlag.com/nowtilus.html?kID=2947\',720,600)',
'H&ouml;rproben', 'http://www1.alexander-verlag.com/downloads.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
112,
740, // 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 (
'Allgemein','http://www.alexander-verlag.com/paymate/kontakt.php?vid=1&do=kontakt',
'Bewerbungen', 'http://www1.alexander-verlag.com/bewerbungen.html',
'Buchhandel/Vertreter', 'http://www1.alexander-verlag.com/buchhandel.html',
'Manuskripte', 'http://www1.alexander-verlag.com/manuskripte.html',
'Presse', 'http://www.alexander-verlag.com/paymate/kontakt.php?do=presse&vid=1',
'Impressum', 'http://www1.alexander-verlag.com/impressum.html'
));

