// 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 = [
	['Investigations', null, null,
		['Indoor Air Technologies', 'http://indoorair.ca/iat/index.php', null],
		['IAT Blog','http://indoorairtechnologies.blogspot.com', null],
	],
	['Building Ventilation Solutions', null, null,
		// this is how item scope settings are defined
		['Indoor Air Technologies', 'http://indoorair.ca/iat/index.php', null],
		['IAT Blog','http://indoorairtechnologies.blogspot.com', null],
	],
	['Aircraft Ventilation Solutions', null, null,
		['ECHO Air', 'http://indoorair.ca/echo/index.php', null],
		['VEFT Aerospace Technology', 'http://indoorair.ca/veft/index.php', null],
		['IAT Blog','http://indoorairtechnologies.blogspot.com', null],
	],
];
