// 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', null],
	['Totem Info', null, null,
		// this is how item scope settings are defined
		['Bell Schedule', 'http://curriculum.bsd405.org/sites/schools/Sammamish/home/Shared%20Documents/Bell%20_Sched.mht'],
		// this is how multiple item scope settings are defined
		['School Bulletin', 'bulletin.html'],
		['Directions', 'http://www.mapquest.com/mq/9-7u8X']
	],
	['Faculty', null, null,
		// this is how item scope settings are defined
		['Departments', 'departments.html'],
		['Counseling', 'http://curriculum.bsd405.org/sites/schools/SHScounselors/default.aspx', null],
		
		['Teacher Web Pages', 'http://www.bsd405.org/default.aspx?tabid=1124']
	],
['Counseling', 'http://schools.bsd405.org/shs/counseling', null],

	['Library', 'https://myportal.bsd405.org/personal/livingss/libresources/default.aspx', null],
	['Athletics', null, null,
		// this is how item scope settings are defined
		['Athletics', 'http://curriculum.bsd405.org/sites/schools/sammamish/Mccarthy/index.html'],
		['Activities', 'http://curriculum.bsd405.org/sites/schools/sammamish/Mccarthy/sammamish_high_schooactivitiesl.htm', null],
		
		],
	
	['Grades', 'https://grades.bsd405.org/Gradebook/PIV/Logon.aspx?ReturnUrl=%2fgradebook%2fpiv%2fDefault.aspx', null],
			['PTSA & STEPS', 'http://www.sammamishtotems.org/', null],

	['Calendar', null, null,
		['School District', 'http://www.bsd405.org/default.aspx?tabid=270'],
		['Sammamish HS', 'calendar.html'],
		['Sharepoint', 'http://sharepoint/sites/schools/shs/default.aspx'],
	],

];



