var MENU_ITEMS = [
	[wrap_top('Home'), 'index.php', null],
	[wrap_top('Mission'), 'mission.php', null],
	[wrap_top_children('Land Preservation'), null, null,
		[wrap_child('Why Preserve Land'), 'why_preserve.php', null],
		[wrap_child('Tax Break Facts'), 'tax_break.php', null],
		[wrap_child('Methods'), 'methods.php', null],
		[wrap_child('Q&A'), 'qa.php', null]
		],
	[wrap_top('Protected Lands'), 'protected.php', null],
	[wrap_top_children('Dvoor Farm'), null, null,
		[wrap_child('About the Farm'), 'dvoor_farm.php', null],
		[wrap_child('Dvoor Vision'), 'dvoor_vision.php', null],
		[wrap_child('Farmers Market'), 'dvoor_market.php', null],
		[wrap_child('Dvoor Farm Events'), 'dvoor_events.php', null],
		[wrap_child('Donate'), 'dvoor_donate.php', null],
		[wrap_child('Get Involved'), 'dvoor_help.php', null]
		],
	[wrap_top_children('About HLTA'), null, null,
		[wrap_child('The Organization'), 'organization.php', null],
		[wrap_child('Board of Trustees'), 'board.php', null],
		[wrap_child('HLTA Staff'), 'staff.php', null]
		],
	[wrap_top('Business Sponsors'), 'partners-in-preservation.php', null],
	[wrap_top('Donate'), 'donate.php', null],
	[wrap_top('Calendar'), 'calendar.php', null],
	[wrap_top('Links'), 'links.php', null],
	[wrap_top('Newsletters'), 'newsletters.php', null],
	[wrap_top('Contact HLTA'), 'contact.php', null],
	[wrap_top('Press Releases'), 'pressreleases.php', null]
]; 

function wrap_top (text) {
	return [['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><img src="menu_files/nav_bullet.gif" width=15 height=7 vspace=0>', text, '</td><td align=right><img src=menu_files/pixel.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><img src="menu_files/nav_bullet_f2.gif" width=15 height=7 vspace=0>', text, '</td><td align=right><img src=menu_files/pixel.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><img src="menu_files/nav_bullet_f2.gif" width=15 height=7 vspace=0>', text, '</td><td align=right><img src=menu_files/pixel.gif width=4 height=7>&nbsp;</td></tr></table>'].join('')
	];
}
function wrap_top_children (text) {
	return [['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><img src="menu_files/nav_bullet.gif" width=15 height=7 vspace=0>', text, '</td><td align=right><img src=menu_files/arr.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><img src="menu_files/nav_bullet_f2.gif" width=15 height=7 vspace=0>', text, '</td><td align=right><img src=menu_files/arr.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><img src="menu_files/nav_bullet_f2.gif" width=15 height=7 vspace=0>', text, '</td><td align=right><img src=menu_files/arr.gif width=4 height=7>&nbsp;</td></tr></table>'].join('')
	];
}
function wrap_parent (text) {
	return [['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td>&nbsp;', text, '</td><td align=right><img src=menu_files/arr.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td>&nbsp;', text, '</td><td align=right><img src=menu_files/arr.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td>&nbsp;', text, '</td><td align=right><img src=menu_files/arr.gif width=4 height=7>&nbsp;</td></tr></table>'].join('')
	];
}
function wrap_child (text) {
	return [['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td>&nbsp;', text, '</td><td align=right><img src=menu_files/pixel.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td>&nbsp;', text, '</td><td align=right><img src=menu_files/pixel.gif width=4 height=7>&nbsp;</td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td>&nbsp;', text, '</td><td align=right><img src=menu_files/pixel.gif width=4 height=7>&nbsp;</td></tr></table>'].join('')
	];
}
