// 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', 'http://www.darularqam.org/new/', null,
	],
	['About', null, null,
		// this is how item scope settings are defined
		//['Product Page', 'http://www.softcomplex.com/products/tigra_menu/', {'tw':'_blank'}],
				// this is how multiple item scope settings are defined
		['Welcome', '/new/welcome/welcome/1', {'tw':'_top', 'tt':'Welcome Message', 'sb':'Welcome Message'}],
		['About us', '/new/taxonomy/term/145', {'tw':'_top', 'tt':'School history, mission, and goals', 'sb':'School history, mission, and goals'}],
		['Governance', '/new/taxonomy/term/152', {'tw':'_top', 'tt':'Governance', 'sb':'Governance'}],
		['Faculty', '/new/taxonomy/term/153', {'tw':'_top', 'tt':'Faculty', 'sb':'Faculty'}],
		['Jobs', '/new/taxonomy/term/169', {'tw':'_top', 'tt':'Open Positions', 'sb':'Open Positions'}],
		['Directions', '/new/taxonomy/term/155', {'tw':'_top', 'tt':'Directions', 'sb':'Directions'}],
		['Facilities', '/new/taxonomy/term/154', {'tw':'_top', 'tt':'Facilities', 'sb':'Facilities'}],
	],
	['Programs', null, null,
		['Elementary School', '/new/taxonomy/term/157', {'tw':'_top', 'tt':'Elementary School', 'sb':'Elementary School'}],
		['Junior High School', '/new/taxonomy/term/158', {'tw':'_top', 'tt':'Junior High School', 'sb':'Junior High School'}],
		['High School', '/new/taxonomy/term/159', {'tw':'_top', 'tt':'High School', 'sb':'High School'}],
		['Tahfeez Program', '/new/taxonomy/term/160', {'tw':'_top', 'tt':'Tahfeez Program', 'sb':'Tahfeez Program'}],
		['Saturday School', '/new/taxonomy/term/161', {'tw':'_top', 'tt':'Saturday School', 'sb':'Saturday School'}],
		['Summer Camp', '/new/taxonomy/term/162', {'tw':'_top', 'tt':'Summer Camp', 'sb':'Summer Camp'}],
],
['Offices', null, null,
	['Admissions', '/new/taxonomy/term/146', {'tw':'_top', 'tt':'Admissions Office', 'sb':'Admissions Office'}],
	['Administration Office', '/new/taxonomy/term/147', {'tw':'_top', 'tt':'Administration Office', 'sb':'Administration Office'}],
	['Financial Office', '/new/taxonomy/term/147', {'tw':'_top', 'tt':'Financial Office', 'sb':'Financial Office'}],
],
['News', null, null,
	['What&#039;s happening?', '/new/taxonomy/term/167', {'tw':'_top', 'tt':'What&#039;s happening?', 'sb':'What&#039;s happening?'}],
	['Administration Office', '/new/taxonomy/term/166', {'tw':'_top', 'tt':'Administration Office', 'sb':'Administration Office'}],
],
];

