// 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 = [
	['About InTek', '../about/aboutintek.php', null,
		['Project References', '../about/project.php'],
		['Engineers', '../etc/construction.php'],
	],
	['InTek Product', '../iProducts/InTekProducts.php', null,
		['InTekUC', '../iProducts/InTekUC.php'],
		['InTek-eTM', '../iProducts/InTek-eTM.php'],
		['InTek Hybrid OPC Server', '../iProducts/InTekOPCServer.php'],
		['InTek Hardwares', '../etc/construction.php'],
	],
	['InTek Services', '../iServices/InTekServices.php'],
	['Partners Products', '../3rdProducts/3rdProducts.php', null,
		['Decode Modem', '../etc/construction.php'],
		['MDS Radio', '../etc/construction.php'],
		['DAE DTU', '../etc/construction.php'],
		['DAE PM210', '../etc/construction.php'],
		['iPECpd', '../etc/construction.php'],
	],
	['Download', '../download/download.php'],
	['News', '../etc/construction.php']
];


