// 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.aspx'],
	['ABOUT US', 'profile.aspx', null,
		['COMPANY PROFILE', 'profile.aspx'],
		['BUSINESS STRATEGY', 'strategy.aspx'],
		['CUSTOMER BASE', 'customerbase.aspx'],
		['CAREERS', 'careers.aspx'],
	],
	['SERVICES', 'network.aspx', null,
		['NETWORK SERVICES', 'network.aspx'],
		['RISK MANAGEMENT', 'riskManagement.aspx'],
		['BACKUP & RECOVERY', 'backupRecovery.aspx'],
		['STORAGE & VIRTUALISATION', 'storageVirtual.aspx'],
		['OUTSOURCING & INFRASTRUCTURE', 'infrastructure.aspx'],
		['PROJECT SERVICES', 'projectServices.aspx'],
		['SOFTWARE DEVELOPMENT', 'softwareDevelopment.aspx'],
	],
	['CONTRACTS', 'consulting.aspx', null,
		['CONSULTING', 'consulting.aspx'],
		['MANAGED SERVICES', 'managedServices.aspx'],
	],
	['CONTACT US', 'contact.aspx'],
];
