// write me if you have questions: web.master@male.net

// constants
var initX       = 15; // x-coordinate of top left corner of dropdown menu 
var initY       = 162; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#C2D9EF'; // 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    = 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
142, // 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 (
'CARE', 'care/ind_care.htm',
'Anesthesie', 'care/ind_care.htm',
'Urologie', 'care/ind_care.htm',
'Chirurgie', 'care/ind_care.htm',
'Home Care', 'care/ind_care.htm'
));

menuContent [1] = new Array ( 
-1, 
-1,
142,
-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 (
'CHIRURGIE', 'chirurgie/ind_chirurgie.htm',
'Dufner', 'chirurgie/ind_chirurgie.htm',
'Henke Sass Wolf', 'chirurgie/ind_chirurgie.htm',
'Swann Morton', 'chirurgie/ind_chirurgie.htm',
'Pilling Surgical', 'chirurgie/ind_chirurgie.htm',
'Weck', 'chirurgie/ind_chirurgie.htm',
'Horizon', 'chirurgie/ind_chirurgie.htm',
'Top Surgical', 'chirurgie/ind_chirurgie.htm',
'Unimed', 'chirurgie/ind_chirurgie.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
140,
-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 (
'DIAGNOSTIEK', 'diagnostiek/ind_diagnostiek.htm',
'Welch Allyn', 'diagnostiek/ind_diagnostiek.htm', 
'Tycos', 'diagnostiek/ind_diagnostiek.htm', 
'Grason Stadler', 'diagnostiek/ind_diagnostiek.htm', 
'Huntleigh Diagnostics', 'diagnostiek/ind_diagnostiek.htm'
));

menuContent [3] = new Array ( 
-1, 
-1,
142,
-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 (
'DISPOSABLES', 'disposables/ind_disp.htm',
'Handschoenen', 'disposables/ind_disp.htm',
'Vingerlingen', 'disposables/ind_disp.htm',
'Beschermkleding', 'disposables/ind_disp.htm',
'Mondmasker', 'disposables/ind_disp.htm',
'Spuiten/naalden', 'disposables/ind_dis.htm',
'Compressen', 'disposables/ind_disp.htm',
'Houtwaar', 'disposables/ind_disp.htm',
'Diversen', 'disposables/ind_disp.htm'
));





