// 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', 'index.html'], // there must be no comma after the last element
	['VISION', 'vision.html'],
	['MISSION','mission.html'],
	['CONCEPTION', 'conception.html'],
	['TRAILERS', 'trailer.html'],
	['CONTACT US', 'contactus.html'],
	['PRODUCTS', 'order.html']

];


