// 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', 'default.asp'],

	['About Us', null, null,
		['Company Information', 'about-company.asp'],
		['Aims And Values', 'about-aims.asp'],
		['Philosophy', 'about-philosophy.asp'],
		['Approach', 'about-approach.asp'],
		['Implementation', 'about-implementation.asp']
	],
	['What We Do', null, null,
		['Managing People Effectively', 'what-manage.asp'],
		['Inspirational Leadership', 'what-inspiration.asp'],
		['Building Teams That Work', 'what-building.asp'],
		['Effective Communication', 'what-effective.asp'],
		['Manager Development Programme', 'what-manager.asp'],
		['Performance Management', 'what-performance.asp'],
		['Culture Change', 'what-culture.asp'],
		['Influencing And Assertiveness', 'what-influence.asp']
	],
	['Contact', 'contact.asp'],
	['Clients', 'clients.asp'],

	['Testimonials', null, null,
		['Ciba', 'test-ciba.asp'],
		['Jarvis Rail', 'test-jarvis.asp'],
	]
];

