// 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'],
	['SFNS Information', null, null,
		['About SFNS', null, null,
			['History', '../../pages/history.html'],
			['Mandate', '../../pages/mandate.html']
		],	
		['SFNS Directory', '../pages/staff.html'],
		['Anual Report 2006/2007 (.pdf format)', '../../documents/anualreport.pdf']
	],
	['London District Chiefs Council', null, null,
		// this is how item scope settings are defined
		['Aboout LDCC', '../aboutldcc.html'],
		['AAMJIWNAANG', 'http://www.aamjiwnaang.ca', {'tw':'_blank'}],
		['Munsee-Delaware Nation', 'index.html'],
		['Caldwell First Nation', '../caldwell/index.html'],
		['Chippewas of Kettle and Stony Point First Nation', 'http://www.kettlepoint.org', {'tw':'_blank'}],
		['Chippewas of the Thames First Nation', 'http://www.cottfn.ca', {'tw':'_blank'}],
		['Delaware Nation', '../delaware/index.html'],
		['Oneida Nation of the Thames', 'http://www.oneida.on.ca', {'tw':'_blank'}],
		['Walpole Island First Nation', '../walpole/index.html']								

	],
	['SFNS Services', null, null,
		['Post Secondary Education', '../services/edu.html'],
		['Technical Services', '../services/tech.html'],
		['AHRDA', '../services/ahrda.html'],
		['RRAP', '../services/rrap.html']
	],
	['&nbsp;&nbsp;&nbsp;Employment &nbsp;&nbsp;&nbsp;Opportunities', '../jobs.html']
];


