// 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 = [
	['ABOUT MYJET', null, null,
		// this is how item scope settings are defined
		['MyJet Profile', 'aboutus.htm'],
		['MyJet Team', 'ourteam.htm'],
		// this is how multiple item scope settings are defined
		['MyJet Vision', 'ourvision.htm'],
		['MyJet Mission', 'ourmission.htm'],
		['MyJet Values', 'ourvalue.htm'],
		
	],
	['OUR SERVICES', null, null,
		// this is how item scope settings are defined
		['Per-Seat On-Demand', 'perseat.htm'],
		// this is how multiple item scope settings are defined
		['Charter Service', 'charterser.htm'],
		['MyJet™ MED-Your Health', 'myjetmed.htm'],
		
	],
	['MYJET BENEFITS', null, null,
		// this is how item scope settings are defined
		['Customer', 'customer.htm'],
		// this is how multiple item scope settings are defined
		['Community', 'community.htm'],
		//['Documentation', 'http://www.softcomplex.com/products/tigra_menu/docs/'],
		//['Forums', 'http://www.softcomplex.com/forum/forumdisplay.php?fid=29'],
		//['TM Comparison Table', 'http://www.softcomplex.com/products/tigra_menu/docs/compare_menus.html'],
		//['Menu Builder', '../_builder/index.html'],
	],
	['NEWS & EVENTS', 'newsevents.htm'],
	['FOR INVESTORS', 'investors.htm'],
	['MYJET FLEET', 'myjetfleet.htm'],
	
];

