// write me if you have questions: web.master@male.net

// constants
var initX       = 15; // x-coordinate of top left corner of dropdown menu 
var initY       = 104;  // 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;

//



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
70, // the width of current menu list 
150, // 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'
));


// Corporate Documents MENU
menuContent [1] = new Array ( 
-1, 
-1,
192,
210, // 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 (
'Articles of Incorporation', 'articlesofincorporation.asp',
'Bylaws', 'bylaws.doc target = _blank',
'View Tax Returns', 'taxreturn.asp',
'Tax ID Certificate', 'taxidcertificate.asp',
'Thanks to all of our Friends from 2005', 'PayList2005.xls target = _blank',
'Minutes', 'minutes.asp'
));

// Links MENU
menuContent [2] = new Array ( 
-1, 
-1,
-1,
390, // 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 (
'WaterShed Atlas - Lake Howell', 'http://www.seminole.wateratlas.usf.edu/lake/default.asp?wbodyid=7579&wbodyatlas=lake target = _blank',
'WAV Program', 'http://sjr.state.fl.us/programs/outreach/education/wav/wav.html target = _blank',
'Florida LakeWatch', 'http://lakewatch.ifas.ufl.edu target = _blank',
'Orange County Environmental Protection Agency:<br>Orange County Lakes and Streams ', 'http://www.orangecountyfl.net/dept/CEsrvcs/EPD/lakes.htm?PL=8&DL=4 target = _blank',
'Orange County Environmental Protection Agency', 'http://www.orangecountyfl.net/dept/CEsrvcs/epd/default.htm?FL=7&DL=4 target = _blank'
));
