// 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
//
// [var1,var2,{'tw':'_blank'}] to open page in new browser window

var MENU_ITEMS = [
	['HOME', 'http://www.alventix.com', null],
	['PRODUCTS', null, null,
		['iBlaze 1394 SDK', 'http://www.alventix.com/prod/iBlaze1394_SDK/iBlaze1394.html', null],
		['BitBlaze 1394 HDK', 'http://www.alventix.com/prod/BitBlaze1394_HDK/BitBlaze1394.html', null]
	],
	['SOLUTIONS', 'http://www.alventix.com/solutions.html', null],
	['DOWNLOADS', 'http://www.alventix.com/downloads.html', null],
	['CORPORATE', null, null,
		['About us', 'http://www.alventix.com/about.html', null],
		['Careers', 'http://www.alventix.com/careers.html', null]
	],
	['NEWS', 'http://www.alventix.com/news.html', null],	
	['CONTACT', 'http://www.alventix.com/contact.php', ]
];

