// 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       = 221;  // y-coordinate of top left corner of dropdown menu 
var backColor   = '#CCCCCC'; // 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 xSpacerglass     = '<img src="magglass.gif" width=35 height=35 border=0> '
var xSpaceronlineapp     = '<img src="onlineapp.gif" width=32 height=32 border=0> '
var xSpacer2people     = '<img src="2guys.gif" width=38 height=31 border=0> '
var xSpacerbylaws     = '<img src="bylaws.gif" width=32 height=32 border=0> '
var xSpacermeetings     = '<img src="meetings.gif" width=32 height=32 border=0> '
var xSpacerflblue     = '<img src="flblue.gif" width=33 height=34 border=0> '
var xSpacerflred     = '<img src="flred.gif" width=33 height=34 border=0> '
var xSpacerflgreen     = '<img src="flgreen.gif" width=33 height=34 border=0> '
var xSpacerlinks     = '<img src="links.gif" width=29 height=32 border=0> '
var xSpacercomproced     = '<img src="comproced.gif" width=32 height=32 border=0> '
var xSpacerfile     = '<img src="file.gif" width=32 height=29 border=0> '
var xSpacerbox     = '<img src="ballotbox.gif" width=32 height=32 border=0> '
var xSpacerpaper     = '<img src="papericon.gif" width=31 height=32 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,
85, // 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 (
xSpaceronlineapp + 'FAPPS Application', 'memberapp.htm',
xSpacer2people + 'Welcome New Members', 'newmembers.asp',
xSpacer2people + 'New Applicants', 'newapplicants.asp',
xSpacerglass + 'Member Search', 'fapps_members_search.asp',
xSpacercomproced + 'Complaint Procedures', 'arbgrivpol.asp',
xSpacerfile + 'File a Complaint', 'filingcomp.asp'
));

// ASSOCIATION INFO MENU
menuContent [2] = new Array ( 
-1, 
-1,
199,
215, // 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 (
xSpacer2people + 'Board of Directors', 'board.asp',
xSpacer2people + 'Committees', 'fapps_committees.asp',
xSpacermeetings + 'Meetings', 'meetings.asp',
xSpaceronlineapp + 'Advertise with FAPPS', 'advertise.asp',
xSpacerbox + 'Elections', 'elections'
));

// FLORIDA MENU
menuContent [3] = new Array ( 
-1, 
-1,
200,
355, // 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 (
xSpacerflblue + 'FL Circuits by County', 'city_county_circuit_FL.doc',
xSpacerflred + 'FL Chapter 48', 'chapter_48_process_service_of.asp',
xSpacerflgreen + 'FL Civil Rules', 'flrulesofcivilprocedure.doc',
xSpacerlinks + 'Useful Links', 'useful_links.asp'
));

// PUBLICATIONS MENU
menuContent [4] = new Array ( 
-1, 
-1,
-1,
465, // 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 (
xSpacerbylaws + 'Bylaws', 'FAPPS_Bylaws.doc',
xSpacerbylaws + 'Policy & Procedure Manual', 'Policy_Procedure_Manual.doc',
xSpacerbylaws + 'Code of Ethics', 'codeofethics.doc',
xSpacerpaper + 'Newsletters', 'newsletters.asp',
xSpacerglass + 'Member Search', 'fapps_members_search.asp'
));
