// 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', './index.html',],
	['About Us', null, null,
		['The Company', './company.html'],
		['Infrastructure', './infrastructure.html'],
		['Office Network', './off_network.html']
	],
	['Services', null, null,
		['On-Line Sealing', './leak_sealing.html'], // Leak
		['Trevitest Testing', './travitest.html'], // On-Line Safety Valve
		['Belzona Know-How', './belzona.html'], // Know-How
		['Metal Stitching', './metal_stitching.html'],
		['Fleetfusion Welding', './fleet_fusion.html'], // Automatic Spiral
		['SolarTech Compound', './solartech.html'] // Sheet Molded
	],
	['Clientele', './clientele.html',],
	['Collaborations', './collaborations.html',],
	['Contact', null, null,
		['Contact Info', './contact_info.html'],
		['Contact Us', './contact_us.html']
	]
];