// constants
var initX       = 20; // x-coordinate of top left corner of dropdown menu 
var initY       = 20; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#008000'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#FFFFFF'; // 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
120, // the width of current menu list 
40, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // 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.html'

));

menuContent [1] = new Array ( 
-1, 
-1,
120,
153, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (

'What? Why? and When?', 'wras.html',
'Who are the organizers', 'wras.html#who',
'The process', 'wras.html#process',
'Financial', 'organizers.html',
'Join Online Discussion Group', 'join.html'

));

menuContent [2] = new Array ( 
-1, 
-1,
120,
266, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Meetings', 'calendar.html',
'Timeline', 'timeline.html'

));

menuContent [3] = new Array ( 
-1, 
-1,
120,
379, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (

'Press releases', 'press.html',
'Publications', 'publications.html'


));

menuContent [4] = new Array ( 
-1, 
-1,
120,
492, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Meeting Notes', 'documents.html#meetingnotes',
'Reports', 'documents.html#reports'

));

menuContent [5] = new Array ( 
-1, 
-1,
120,
605, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Conservation at Home', 'http://www.smrwa.org/pub_BackyardConservation.html target=_blank',
'Sustainable Development', 'http://www.smrwa.org/pub_HiltonRunPlan.html target=_blank',
'Publications', 'publications.html',
'Scientific Research', 'science.html',
'Links to other WRAS documents', 'links.html#otherwras' 


));

menuContent [6] = new Array ( 
-1, 
-1,
80,
700, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
98, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Email Us', 'mailto:smwatershed@yahoo.com'

));

menuContent [7] = new Array ( 
3, 
1,
220,
-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 (

'Hilton Run Plan', 'http://www.smrwa.org/pub_HiltonRunPlan.html target=_blank',
'Backyard Conservation', 'http://www.smrwa.org/pub_BackyardConservation.html target=_blank',
'Breton Bay WRAS', 'http://www.dnr.state.md.us/watersheds/surf/proj/brbay_strat.html target=_blank'
));

menuContent [8] = new Array ( 
5, 
3,
180,
-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 (
'Oyster Video', 'http://www.youtube.com/watch?v=WT5RHlRHWJA target=_blank'

));

menuContent [9] = new Array ( 
3, 
4,
180,
-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 (


));

menuContent [10] = new Array ( 
3, 
4,
220,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
260, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Strategic Plan 2006 - 2010', 'publications.html',
'Fundraising Plan 2007 - 2010', 'publications.html',
'Organizational Plan', 'publications.html'

));




