// 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','http://www.dextratech.com/dextra/index.html'],
	['Solutions & Services', null, null,
		['Engineering Services','/dextra/solutions/index.html?img=solutions'],
		['IT Services','/dextra/solutions/itservices.html?img=solutions'],
		['Test & Validation Practices','/dextra/solutions/test.html?img=solutions'],
		['Supporting Complete Life Cycle','/dextra/solutions/supporting.html?img=solutions'],
		['Architecture Services','/dextra/solutions/architecture.html?img=solutions']
	],
	['Expertise', null, null,
		['Processes & Methodologies','/dextra/expertise/index.html?img=expertise'],
		['Competences','/dextra/expertise/competences.html?img=expertise'],
		['Case Studies','/dextra/expertise/cases.html?img=expertise',null,
			['Precision Prospects','/dextra/expertise/precision.html?img=expertise'],
			['Texas Instruments','/dextra/expertise/texas.html?img=expertise'],
			['Nokia','/dextra/expertise/nokia.html?img=expertise']
		],
		['Clients','/dextra/expertise/clients.html?img=expertise']
	],
	['About Us', null, null,
		['Overview','/dextra/about/index.html?img=about'],
		['Mission, Vision & Values','/dextra/about/vision.html?img=about'],
		['Value Proposition','/dextra/about/valueproposition.html?img=about'],
		['Advantage','/dextra/about/advantage.html?img=about'],
		['Awards & Alliances','/dextra/about/awards.html?img=about'],
		['Management Team','/dextra/about/people.html?img=about'],
		['Clients','/dextra/about/client.html?img=about'],
		['Locations','/dextra/about/locations.html?img=about'],
		['Environment','/dextra/about/ecological.html?img=about']
	],
	['Research', null, null,
		['Overview','/dextra/research/index.html?img=research'],
		['Osi-Dx: Open Source Initiative','/dextra/research/osidx.html?img=research'],
		['Academic & Scientific Relations','/dextra/research/publications.html?img=research'],
		['Andy Goes Hunting Game','/dextra/research/andygoeshunting.html?img=research'],
		['SMS Wizard App','/dextra/research/smswizard.html?img=research']
	],
	['News & Events', null, null,
		['Events','/dextra/news/index.html?img=news'],
		['News','/dextra/news/news.html?img=news']
	],
	['Careers', null, null,
		['Working at Dextra','/dextra/careers/index.html?img=careers'],
		['Available Positions','/dextra/careers/jobs.html?img=careers']
	],
	['Contact','/dextra/contact/index.html?img=contact'],
	['Sitemap','/dextra/sitemap/index.html?img=sitemap']
];

