// write me if you have questions: web.master@male.net

// constants
var initX       = 145; // x-coordinate of top left corner of dropdown menu 
var initY       = 141; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#000066'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#009933'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 5;
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
130, // 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 (
'Wer ist HMG', 'wer.htm',
'Kontakt', 'kontakt.htm',
'Links', 'links.htm',
'Kongressdaten', 'http://www.akm.ch target="bb"'
));

/*menuContent [1] = new Array ( 
-1, 
-1,
130,
231, // 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 (
'Vitaphone', 'vitaphone.htm',
'Zahnklinik Rennbahn', 'rennbahn.htm',
'Hardmeier Electronics', 'hardmeier.htm',
'Just medical!', 'drouwerkerk.htm'
)); */

menuContent [2] = new Array ( 
-1, 
-1,
130,
316, // 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 (
'Organisationen', 'organisationen.htm'
));

/*menuContent [3] = new Array ( 
-1, 
-1,
130,
405, // 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 (
'Multimedia', 'multimedia.htm',
'Gästebuch', 'guestbook.htm'
));
*/
