// 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.creosa.desu.edu/index.html'],
	['About', null, null,
		['People', null, null,
			['Faculty & Staff', 'http://www.creosa.desu.edu/faculty.html'],
			['Students', 'http://www.creosa.desu.edu/students.html'],
			['Advisory Committee', 'http://www.creosa.desu.edu/eac.html']
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Mission', 'http://www.creosa.desu.edu/mission.html'],
		['Directions', 'http://www.creosa.desu.edu/directions.html'],
		['Contact Us', 'http://www.creosa.desu.edu/contact.html']
	],
	['Programs', null,null,
	 	['Outreach', null, null, 
		 	['Summer Research Program', 'http://www.creosa.desu.edu/summer.html'], 
		//	['Collaborators', 'http://www.creosa.desu.edu/template.html']
		],
	 	['Graduate Studies', 'http://www.creosa.desu.edu/gradprogram.html']
	],
	['Research', null, null,
	 	['Research Overview', 'http://www.creosa.desu.edu/research.html'],
		['Collaborators', 'http://www.creosa.desu.edu/collaborators.html']
	],
	['Resources', null, null,
		['Shared Equipment', 'http://www.creosa.desu.edu/shared.html'],
		['LIBS Database', 'http://www.creosa.desu.edu/LIBS.html'],
	 	['Optical Society of America', 'http://www.osa.org', {'tw':'_blank'}],
		['IEEE', 'http://www.ieee.org/web/education/home/index.html', {'tw':'_blank'}],
		['SPIE', 'http://spie.org', {'tw':'_blank'}]	
	],
	['Colloquia', 'http://www.creosa.desu.edu/colloquia.html']
];

