// 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       = 112; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#FFFFFF'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#003366'; // 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
100, // the width of current menu list 
259, // 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 (
'Neuerscheinungen', 'planung_neuerscheinungen.html',
'Wiederauflagen', 'planung_wiederauflagen.html',
'Planung <br> Schritt für Schritt', 'planung_arbeitsablauf.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
112,
153, // 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 (
'Unsere Leistungen','service_leistungen.html',
'Beratung', 'service_beratung.html',
'Lektorat', 'service_lektorat.html',
'Satz', 'service_satz.html',
'Cover', 'service_cover.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
110,
364, // 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 (
'Books on Demand', 'technologie_bod.html',
'einsnull', 'technologie_einsnull.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
150,
680, // 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 (
'BUCH&media - die Firma', 'firma.html',
'Mitarbeiter', 'mitarbeiter.html',
'Unternehmensgeschichte', 'geschichte.html'
));


