// write me if you have questions: web.master@male.net

// constants
var initX       = 75; // x-coordinate of top left corner of dropdown menu 
var initY       = 128;  // y-coordinate of top left corner of dropdown menu 
var backColor   = '#006699'; // 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;
var xSpacerbullet     = '<img src="bullet1.gif" width=8 height=13 border=0> '

//



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
-1, // the width of current menu list 
190, // 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 (
'Link 11', 'http://www.1.net',
'Link 12', 'http://www.2.net',
'Link 13', 'http://www.3.net'
));


// MEMBERSHIP INFO MENU
menuContent [1] = new Array ( 
-1, 
-1,
-1,
250, // 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 (
xSpacerbullet + 'Application', 'application.asp',
xSpacerbullet + 'Renew Membership', 'renewmembership.asp',
xSpacerbullet + 'Directory', 'directory.asp',
xSpacerbullet + 'Board of Directors', 'boardofdirectors.asp',
xSpacerbullet + 'Committees', 'committees.asp'
));

// PUBLICATIONS INFO MENU
menuContent [2] = new Array ( 
-1, 
-1,
199,
340, // 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 (
xSpacerbullet + 'Bylaws', 'bylaws.asp',
xSpacerbullet + 'Newsletter', 'newsletter.asp',
xSpacerbullet + 'Code of Ethics', 'codeofethics.asp',
xSpacerbullet + 'Board Meeting Minutes', 'boardmeetingminutes.asp'
));

// RULES OF SERVICE MENU
menuContent [3] = new Array ( 
-1, 
-1,
-1,
430, // 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 (
xSpacerbullet + 'Arizona Superior Court', 'http://www.clerkofcourt.maricopa.gov/process_svr.asp target=_blank',
xSpacerbullet + 'Arizona Supreme Court', 'http://www.azcourts.gov/cld/PrivateProcessServer.aspx target=_blank'
));

// TRAINING MENU
menuContent [4] = new Array ( 
-1, 
-1,
-1,
560, // 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 (
xSpacerbullet + 'Training', 'training.asp',
xSpacerbullet + 'Annual Meeting', 'annualmeeting.asp',
xSpacerbullet + 'Purchase Manual', 'purchasemanual.asp'
));


