// 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', '../index.html'],
	['Links', null, null,
		['Government', '../GovtLink.htm'],
		['Party & Media', '../MoreLink.htm'],
		['County Party Organs', '../CountyGOP.htm'],
		['Recommended Articles', '../ReadLink.htm'],
		['Recommended Books', '../BookLink.htm'],
		['Videos', '../VidLink.htm'],
		['Contacts', '../ContactPage.htm'],
		['Downloads', '../Download.htm']
	],
	['News & Events', null, null,
		['Party News', '../NewsPage.htm'],
		['Tax Day TEA Party', null, null,
			['Eye-Witness Report', '../TeaPage.htm'],
			['Preparations Photos'],
			['Tea Party Photos', 'Pics2.htm'],
			['More Photos', 'PicsJan.htm']
		],	
		['Real Solutions Town Hall', null, null,
			['Announcement', 'TownHall.htm'],
			['Wrap-up & Resources', 'TH-Resrc.htm']
		],
		['Calendar', 'http://events.marioncountygop.org'],
		['Archives', '../NewsPageOld1.htm'],
		['Newsletter', '../Docs/Newsltr9-07.pdf']
	],
	['PCPs', null, null,
		['From the Chair', '../ChairPage.htm'],
		['For PCPs', '../PCP-Page.htm']
	],
	['Blogs', null, null,
		['Intro & Links', '../BlogPage.htm'],
		['Log-in Page & Portal', 'http://blog.marioncountygop.org']
	],
	['Volunteer', null, null,
		['Personal Action Plan', '../VolntrPage.htm'],
		['Secure Sign-Up Form', 'https://www.completecampaigns.com/public.asp?name=MarionGOP&page=18']
	],
	['Donate', null, null,
		['How to Support', '../ContribPage.htm'],
		['Oregon Tax Credit', '../TxCrPage.htm'],
		['Online Donations', 'https://www.completecampaigns.com/public.asp?name=MarionGOP&page=1'],
		['Tax Credit Donations', 'https://www.completecampaigns.com/public.asp?name=MarionGOP&page=36']
	]
];
