// 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', {'tw' : '_self'}],
	['Company', 'company.html', {'tw' : '_self'},
		['Company Profile','company_profile.html', {'tw' : '_self'}],
		['Awards','awards.html', {'tw' : '_self'}],
		['Certification','certification.html', {'tw' : '_self'}],
		['Contact Us','contact_us.html', {'tw' : '_self'}]
	],
	['Products', 'product.html', {'tw' : '_self'},
		['Wireless Email','wireless_email.html', {'tw' : '_self'}],
		['Device Management','device_mgmt.html', {'tw' : '_self'}],
		['File Sync','file_sync.html', {'tw' : '_self'},
			['Field Force Automation','underConstruction.html', {'tw' : '_self'}]
		],
		['Application Sync','app_sync.html', {'tw' : '_self'},
			['Sales Force Automation','underConstruction.html', {'tw' : '_self'}],
			['Warehouse Mgmt System','underConstruction.html', {'tw' : '_self'}],
			['Stock Take','underConstruction.html', {'tw' : '_self'}],
			['Distributor System','underConstruction.html', {'tw' : '_self'}]
		]
	],
	['Services', 'services.html', {'tw' : '_self'},
		['Training','training.html', {'tw' : '_self'}],
		['Installation','installation.html', {'tw' : '_self'}]
	],
	['Customers', 'customer.html', {'tw' : '_self'},
		['Case Study','customer_case.html', {'tw' : '_self'}]
	],
	['Partners','partner.html', {'tw' : '_self'}]
];