// 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 = [
	['<img src="http://www.microprotol.com/image/engfra.jpg">&nbsp;Home', null, null,
		['English', 'http://www.microprotol.com/index.html'],
		['French', 'http://www.microprotol.com/initialf.htm']
	],

	['EuResearch', null, null,
		['Presentation', 'http://www.microprotol.com/ER_info.htm'],
		['Partnership', 'http://www.microprotol.com/partners.htm'],
		['Careers', 'http://www.microprotol.com/job.htm']
	],

	['Microprotol', null, null,
		['Introduction', 'http://www.microprotol.com/mpspeca.htm'],
		['Specification', 'http://www.microprotol.com/mpspecifica.htm'],
		['Detail', 'http://www.microprotol.com/mpspecdetaila.htm'],
		['Services', 'http://www.microprotol.com/servicese.htm'],
		['Demo', 'http://www.microprotol.com/mpgalleriea.htm']
	],

	['Distributors', 'http://www.microprotol.com/com_info.htm'],

	['Prices', 'http://www.microprotol.com/tariff.htm'],

	['Contact', 'http://www.microprotol.com/contacta.htm'],

	['Users\' Club', null, null,
		['QA documents', 'http://www.microprotol.com/private/introe.htm'],
		['Tips', 'http://www.microprotol.com/private/tipa.htm'],
		['Download', 'http://www.microprotol.com/private/downa.htm'],
		['Users list', 'http://www.microprotol.com/private/listref.htm']
	]
];


