// 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','default.htm', {'tw' : '_parent'}],
	['Dampers','dampers.htm', {'tw' : '_parent'}],
	['Expansion Joints', null, null,
		['Metallic','ej_metallic.htm', {'tw' : '_parent'}],
		['Non-Metallic','ej_nonmetallic.htm', {'tw' : '_parent'}]		
	],
	['Custom Metal Fab','CustomMetalFab.htm', {'tw' : '_parent'}],
	['Contacts','Contacts.htm', {'tw' : '_parent'}],
];
