// 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 = [
	['Company', 'index.php', null,
		['Company Profile', 'companyprofile.php'],
		['Vision', 'vision.php'],
		['Certification', 'certification.php'],
	],

	[' Technology', 'technology.php', null,
		['Technology', 'technology.php'],
		['R&D', 'r&d.php'],
		['QA/QC', 'qa.php'],
		['Coating', 'coating.php'],
	],

	['Products', null, null,
		['Domestic', 'domesticproducts.php?value=1'],
		['Export', 'exportproducts.php?value=1'],
	],

	['News', null, null,
		['Career', 'career.php'],
		['News Room', 'news.php'],
		['Health Watch', 'healthwatch.php'],	
	],

	['Marketing', null, null,
		['Objectives', 'objectives.php'],
		['Organogram', 'organogram.php'],
		['Distribution Network', 'network.php'],
		['Distribution Policy', 'policy.php'],
		['Field Staff', 'fieldstaff.php'],
	],

	['Contact', null, null,
		['Products Inquiry', 'contactus.php'],
		['Feedback', 'contactus.php'],
		['Contact Us', 'contactus.php'],
		['Admin Login', 'admin.php'],
	],
];
