// write me if you have questions: web.master@male.net

// constants
var initX       = 14; // x-coordinate of top left corner of dropdown menu 
var initY       = 215; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#EFEFEF'; // 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
100, // 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 (
'company', 'company.htm'


));

menuContent [1] = new Array ( 
-1, 
-1,
200,
-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 (
'Battering & Breading', 'battering.htm',
'Conveyors & Handling', 'conveyors.htm',
'Fish Equipment', 'fishequip.htm',
'Forming Equipment', 'forming.htm',
'Metal Detectors', 'metaldetectors.htm',
'Miscellaneous Equipment', 'miscequip.htm',
'Ovens & Frying', 'ovensfrying.htm',
'Packing & Wrapping', 'packing.htm',
'Pasta Machinery', 'pasta1.htm',
'Poultry & Processing', 'poultry.htm',
'Refrigeration Equipment', 'refrigeration.htm',
'Spiral Freezers', 'spiralfreezers.htm',
'Weight Checkers', 'checkweighers.htm'



));

menuContent [2] = new Array ( 
-1, 
-1,
100,
-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 (
'contact us', 'contact.htm'
));

menuContent [3] = new Array ( 
-1, 
-1,
100,
-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 (
'home page', 'index.htm'
));








