// 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 = [
	['Administration', null, null,
		// this is how item scope settings are defined
		['Contact Us', 'ContactUs.asp', {'tw':'_self'}],
		// this is how multiple item scope settings are defined
		['About Us', 'AboutUs.asp'],
		['Consultancy', 'Consult.asp'],
		['Specialized Training', 'Training.asp'],
		['Affiliated Program', 'Affiliate_Home.asp'],
		['Useful Links', 'Useful_Links.asp', null],
		['Newsletter', 'News.asp', null],
		['Events','Events.asp', null],
        ['Course Quotation','Qutation.asp', null],
	],	
	['Articles','Articles.asp', null],
	['Search','Search.asp', null],
	['Promotion','Promotions.asp', null],
	['General Enquiry','GenEnquiry.asp', null],
	['Member Log-In','MemberLogIn.asp', null]

];

