// 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
// 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'

var MENU_ITEMS = [
	['&nbsp;&nbsp;Home', 'http://www.summerseng.com/'],
	['About SEI', null, null,
		['Company Profile', 'profile.htm'],
		['Principals', 'principals.htm'],
		['Recent & Notable Projects', 'recent.htm']
	],
	['Services', null, null,
		['Irrigation Design', 'irrig.htm'],
		['Hydraulic Design', 'hydraulic.htm'],
		['Structural Design', 'structural.htm'],
		['Plans and Specifications', 'planSpec.htm'],
		['Construction Management', 'construction.htm'],
		['Grant Applications and Management', 'grantApps.htm'],
		['Drainage System Design', 'drainage.htm'],
		['Water Quality Program Management', 'waterQual.htm'],
		['Planning and Feasibility Studies', 'planFeas.htm'],
		['Potable Water Treatment System Design', 'waterPotable.htm'],
		['Wastewater System Design and Management', 'wastewater.htm'],
		['Water Treatment Plant Design', 'waterPlant.htm']
	],
	['Careers', null, null,
		['Available Positions', 'positions.htm'],
		['Location - City of Hanford', 'location.htm']
	],
	['Clients', 'clients.htm'],
	['Contact', 'contact.htm']
];


