// 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 = [
	['Company', '.', null,
		['About us', 'com_aboutus.html'],
		['Team', 'com_team.html'],
		['Investors', 'com_investors.html'],
		['Careers', 'com_careers.html'],
		['Disclaimer', 'com_legal.html']
	],
	['Wireless Sensors and RTLS', null, null,
		['Introduction', 'wsn_intro.html'],
		['LOST RTLS', 'lost_system.html', null,
			['LOST System', 'lost_system.html'],
			['LOST Reference Node', 'lost_rn.html'],
			['LOST Mobile Node', 'lost_mn.html'],
//			['LOST Light Mobile Node', 'lost_lmn.html'],
			['LOST Tracker Server Software', 'lost_sw.html']
		],
		['Wavenis', 'wsn_wavenis.html']
	],
	['SoC-SiP', null, null,
		['SoC-SiP ASICS', 'soc_asics.html'],
		['SoC-SiP Design', 'soc_design.html'],
		['Mixed Signal', 'soc_mixedsignal.html'],
		['IP', 'soc_ip.html'],
		['SoC Sourcing', 'soc_sourcing.html']
	],
	['Embedded SW', 'esoft_mind.html'],
	['Foundry', null, null,
		['Foundry', 'foundry.html'],
		['Technology', 'foundry_technology.html'],
		['Porting Services', 'foundry_porting.html']
	],
	['News', null, null,
		['News', 'news_events.html'],
		['News Archive', 'news_archive.html']
	],
	['Contact', null, null,
		['Address', 'con_address.html'],
		['Mail Form', 'con_mailform.html']
	]
];

