// write me if you have questions: web.master@male.net

// constants
var initX       = 0; // x-coordinate of top left corner of dropdown menu 
var initY       = 155; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#9AC8ED'; // 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  = 15;
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
120, // 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 (
'',''
));


menuContent [1] = new Array ( 
-1, 
-1,
150,
65, // 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 (
'About Us', '/profile.html'
));

menuContent [2] = new Array ( 
-1, 
-1,
150,
135, // 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 (
'Linear Arc Lamps','/flashlamps.html',
'Short Arc Lamps','/flashlamps.html',
'Helical Lamps','/flashlamps.html'
));

menuContent [3] = new Array ( 
-1, 
-1,
150,
230, // 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 (
'Nd:YAG rods','/components.html',
'Mirrors','/components.html',
'Q-Switch','/components.html',
'DI-Filters','/components.html'
));

menuContent [4] = new Array ( 
-1, 
-1,
150,
320, // 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 (
'Laser Repair','/services.html',
'Lamp Power Supply','/services.html',
'RF-Driver','/services.html',
'Nd:YAG Rod','/services.html'
));

menuContent [5] = new Array ( 
-1, 
-1,
150,
378, // 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 (
));

menuContent [6] = new Array ( 
-1, 
-1,
150,
440, // 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 (
'Prolase', '/downloads.html',
'Tune SCR','/downloads.html',
'Catalog', '/downloads.html'
));

menuContent [7] = new Array ( 
-1, 
-1,
150,
525, // 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 (
));