// 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'],
		['2010 Campaigns', null, null,
			['Mike Forest - SD 11', 'For-SD11.htm'],
			['Marvin Sannes - HD 21', 'San-HD21.htm'],
			['Kathy LeCompte - HD 22', 'LeC-HD22.htm'],
			['Chris Telfer - Treasurer', 'Tel-Trea.htm'],
			['Chris Dudley - Governor', 'Dud-Gov.htm'],
			['Scott Bruun - Congress', 'Bruun-C5.htm'],
			['Jim Huffman - U.S. Senate', 'Huff-Sen.htm']
		],
		['Calendar', 'http://events.marioncountygop.org'],
		['First Wednesday Breakfast', 'BrkfstPage.htm'],
		['Lincoln Day Dinner', 'Lincoln0.html'],
		['Archives', 'NewsPageOld1.htm'],
		['Newsletters', null, null,
				['Legislature', null, null,
				['HD 17 - Rep. Sprenger', 'HD17News.htm'],
				['HD 18 - Rep. Gilliam', 'Docs/HD18News.pdf'],
				['HD 19 - Rep. Cameron', 'HD19News.htm'],
				['HD 20 - Rep. Berger'],
				['HD 23 - Rep. Thompson'],
				['HD 25 - Rep. Thatcher', 'HD25News.htm'],
				['SD 09 - Sen. Girod'],
				['SD 10 - Sen. Winters'],
				['SD 12 - Sen. Boquist'],
				['SD 13 - Sen. George']
			]
		]
	],
	['PCPs', null, null,
		['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']
	]
];

