// write me if you have questions: web.master@male.net

// constants
var initX       = 490; // x-coordinate of top left corner of dropdown menu 
var initY       = 140; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#000000'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#666666'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 8;
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
90, // the width of current menu list 
175, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
282, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'History', '',
'Committee', '',
'Executives', '',
'Illustrious Members', ''
));

menuContent [1] = new Array ( 
-1, 
-1,
90,
265, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
282, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Information', '',
'Race Cards & Results', ''
));

menuContent [2] = new Array ( 
-1, 
-1,
90,
355, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
282, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Racing Videos', '',
'Photo Gallery', ''
));

menuContent [3] = new Array ( 
-1, 
-1,
90,
450, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
282, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Golf', '',
'Equestrian', ''
));

menuContent [4] = 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 Form', 'ctctform.html',
'Offices', 'offices.html',
'Become An Agent', 'agent.html'
));




