// 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'],
	['about',  null, null,
		['Contacts and location', 'about_contacts_and_location.htm'],
		['People', 'about_people.htm'],
		['Careers', 'about_careers.htm'],
		['News', 'news.htm'],
		['Events', 'events.htm'],
		['Our Clients', 'about_our_clients.htm'],
		['Partnerships', 'about_partnerships.htm']
	],
	['scanning', null, null,
		['Global Scanning Service', 'global_scanning_service.htm'],
		['UK Scanning Bureau', 'uk_scanning_bureau.htm']
	],
	['software', null, null,
		['Airlines', 'software_airlines.htm'],
		['Lessors', 'software_lessors.htm'],
		['MRO', 'software_mro.htm']
	],
	['imaging', null, null,
		['Scanning', 'imaging_scanning.htm'],
		['PDF Conversion', 'imaging_pdf_conversion.htm'],
		['Microfilm/fiche Conversion', 'imaging_microfilm_microfiche_conversion.htm']
	],
	
];

