var myURL = 'http://www.recoverycorps.org/';

// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home',myURL+'index.php'],
	['Donate','donate.php','_blank'],
	['About',myURL+'about.php',,
		['Mission and History',myURL+'mission.php'],
		['Our Model',myURL+'ourmodel.php'],
		['Board of Directors',myURL+'board.php'],
		['Partners',myURL+'partners.php'],
		['Staff',myURL+'staff.php'],
		['Progress Reports',myURL+'progressreports.php'],
		['FAQs',myURL+'faq.php',null],
	],
	['Programs',myURL+'programs.php',
		['Recovery Planning',myURL+'recoveryplanning.php'],
		['Disaster Case Management Pilot',myURL+'DCMP.php'],
		['HEF',myURL+'hef.php',null],
		['Building Community Resilience',myURL+'bcr.php'],
		['Louisiana Cottages',myURL+'louisianacottages.php'],
		['Housing Repair',myURL+'housingrepair.php'],
		['Past Programs',myURL+'pastprograms.php'],
	],
	['Resources',myURL+'resources.php',
		['Facts and Figures',myURL+'facts.php'],
		['Reports',myURL+'reports.php'],
		['Data',myURL+'data.php'],
		['Editorials & Presentations',myURL+'editorials.php'],
	],
	['Future Disasters',myURL+'futuredisasters.php'],
	['Newsroom',myURL+'pressreleases.php',,
		['Press Releases',myURL+'pressreleases.php'],
		['Faces of Recovery',myURL+'facesofrecovery.php'],
		['In The News',myURL+'inthenews.php'],
		['Editorials & Presentations',myURL+'editorials.php'],
		['Media Kit',myURL+'mediakit.php'],
		['Sign-Up for News & Updates',myURL+'signup.php'],
		['Progress Reports',myURL+'progressreports.php'],
		['FAQs',myURL+'faq.php'],
	],
];

