// 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

// TK Home Page

var MENU_ITEMS = [
	['Home', 'index.html'],
	['Products', null, null,
		['Turnkey Retail', 'retailx.html'],
		['TCEMS', 'tcemsx.html'],
		['TISCAM', 'tiscamx.html']
	],
	
	['Services', null, null,
		['Professional Services', null, null,
			['Business Inteligence', 'inteligencex.html'],
			['Project Management', 'projectmanx.html'],
			['Workflow Systems', 'workflowx.html'],
			['Data Analysis and Design', 'analysisx.html']
		],
		['Development', 'devx.html'],
		['Hardware Sales', 'hardwarex.html']
	],
	['Contact', null, null,
		['Contact Detail','contactx.html'],
		['Feedback Form','feedbackx.html']
	],
	['Support', 'supportx.html'],
	['News', 'newsx.html'],
	['FAQ', 'faqx.html']
];


