// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]


var MENU_ITEMS = [
	['Calendar of Events', 'Calendar.html'],
	['Our Members', null, null,
		['Member Benefits', 'Members.html'], 
		['Become a Member', 'http://www.oswa.org/application.html', {'tw':'_blank'}] 
	],
	['MWM Contact', 'MWM.html'],
	['Officers and Directors', 'Directors.html'],
	['Forest Forum Newsletter', 'FFNewsletter.html'],
	['Tree Farm Picture Tour', null, null,
		['Jacobs TFOY Tour', 'Tour1.html'],
		['Jim Brown Tree Farm', 'Tour2.html'],
		['Shumakers TFOY Tour', 'Tour3.html']
	],
	['Advertise Here', 'Advertisement.html'],
	['Our Links', null, null,
		
		['Links', 'Links.html'],
		['Pacific NW Research', 'http://www.fs.fed.us/pnw/', {'tw':'_blank'}],
		['OSU Extention', 'http://extension.oregonstate.edu/', {'tw':'_blank'}],
		['Oregon Dept. of Forestry', 'http://egov.oregon.gov/ODF/', {'tw':'_blank'}],
		['Oregon Forest Resources', 'http://www.ofri.org/', {'tw':'_blank'}],
		['Oregon Tree Farm System', 'http://www.otfs.org/index.html', {'tw':'_blank'}],
		['OR Forestry Directory', 'http://www.orforestdirectory.com/', {'tw':'_blank'}]
	],
	['Home Page', 'index.html']
];


