// 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'],
	['About GSS', 'aboutgss.html', null,
		['Mission Statement', 'mission.html', null, null],
		['Constitution', 'GSS-Constitution.pdf', null,null],
	],
	['Who Are We?', 'whoarewe.html', null,
		['Executive Committee', 'executive.html', null, null],
		['Senator & Active members', 'senators.html', null,null],
		['Handbook', 'handbook.html', null,null],
	],
	['What we do', null, null,
		['Internal Committees', 'internal.html', null, null],
		['External Committees', 'external.html', null,null],
		['Campus Representatives', 'representatives.html', null,null],
		['Past Events', 'representatives.html', null,null],
		['Whats Happening', 'whatshappening.html', null,null],
	],
	['Get Involved', 'getinvolved.html', null,
		['Membership officer', 'membership.html', null, null],
		['Unrepresented Academic Programs', 'unrepresentated.html', null,null],
		['Current Events', 'current.html', null,null],
	],
	['Important Links', 'linksgss.html']
];

