// 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', 'http://www.conservationdistrict.org/index.html'],
	['About Us', 'http://www.conservationdistrict.org/about_us.html'],
	['Rural', 'http://www.conservationdistrict.org/rural.html', null,
	 
		['Small Farms', 'http://www.conservationdistrict.org/blank_page.html'], 
		['Large Farms', 'http://www.conservationdistrict.org/blank_page.html'],
		['Riparian Restoration', 'http://www.conservationdistrict.org/riparian.html']			
	],
	['Urban', 'http://www.conservationdistrict.org/urban.html'],
	['Special Projects', 'http://www.conservationdistrict.org/special_projects.html'],
	['WeedWise', 'http://www.conservationdistrict.org/weedwise.html', null,
	 
		['Weeds', 'http://www.conservationdistrict.org/weedwise.html'],
		['Projects', 'http://www.conservationdistrict.org/blank_page.html'],
		['Research', 'http://www.conservationdistrict.org/blank_page.html'],
		['Resources', 'http://www.conservationdistrict.org/blank_page.html'],
		['Report Invaders', 'http://www.conservationdistrict.org/blank_page.html']
	],
	['Publications', 'http://www.conservationdistrict.org/publications.html'],
	
	['News \& Events', 'http://www.conservationdistrict.org/calendar.html'],
];

