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

// constants
var initX       = 97; // x-coordinate of top left corner of dropdown menu 
var initY       = 152; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#00308F'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#CEDFEF'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 10;
var xOverlap    = 5;
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
220, // 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 (
'Erweiterte Suche ...', 'page.php?modul=Courses',
'Allgemeinbildung/Soziales/Gesundheit', 'page.php?modul=HTML-Pages&pid=11',
'Bildungsberatung/Orientierung', 'page.php?modul=Courses&op=showrub&rub=4',
'EDV/Internet', 'page.php?modul=Courses&op=showrub&rub=2',
'Fachwirte Ausbildung', 'page.php?modul=HTML-Pages&pid=10',
'Fortbildung', 'page.php?modul=Courses&op=showrub&rub=8',
'Immobilienwirtschaft', 'page.php?modul=Courses&op=showrub&rub=14',
'Int. Rechnungslegung (IAS)', 'page.php?modul=Courses&op=showrub&rub=16',
'Qualifizierung', 'page.php?modul=Courses&op=showrub&rub=7',
'Lerncenter', 'page.php?modul=HTML-Pages&pid=9',
'Senioren (ab 55 Jahren)', 'page.php?modul=Courses&op=showrub&rub=13',
'Sprachen', 'page.php?modul=Courses&op=showrub&rub=1',
'Trainingsmaßnahmen', 'page.php?modul=Courses&op=showrub&rub=9',
'U 25 (unter 25 Jahren)', 'page.php?modul=Courses&op=showrub&rub=10',
'Umschulungen', 'page.php?modul=Courses&op=showrub&rub=3',
'Vorbereitungslehrgang', 'page.php?modul=Courses&op=showrub&rub=5',
'Weiterbildung', 'page.php?modul=Courses&op=showrub&rub=12'
));


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
220, // the width of current menu list 
260, // 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 (
'WIPA Business', 'page.php?modul=HTML-Pages&pid=14',
'Training, Coaching und Seminare', 'page.php?modul=HTML-Pages&pid=15',
'Softwareanwendungstraing', 'page.php?modul=HTML-Pages&pid=16',
'Fremdsprachentraining nach Maß', 'page.php?modul=HTML-Pages&pid=17',
'Qualifizierung nach Maß', 'page.php?modul=HTML-Pages&pid=18'
));




