// 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 = [
	<!--['SUV', '#'],-->
	['SUVs',null, null,
	// this is how item scope settings are defined
		['Toyota Fortuner', 'Toyota_FortunerSpecs.htm'],
		// this is how multiple item scope settings are defined
		<!--['submenu', '#', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
	],
	['MPVs', '#'],
	['Trucks',null, null,
	// this is how item scope settings are defined
		['Mitsubishi FusoSpecs', 'Mitsubishi_FusoSpecs.htm'],
		// this is how multiple item scope settings are defined
		<!--['submenu', '#', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
		<!--['submenu', '#'],-->
	],
	['Vans', '#'],
	['Bus/Minibus','#'],
	['Heavy Vehicles', '#'],
	<!--['Res center',null, null,
	// this is how item scope settings are defined-->
		<!--['News', 'news.htm'],-->
		// this is how multiple item scope settings are defined-->
		<!--['Review', '#', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		<!--['Useful Links', '#'],-->
		<!--['Auto Movers', '#'],-->
		<!--['Auto Auction', '#'],-->
		<!--['Auto Classifieds', '#'],-->
		<!--['Others', '#'],-->
		<!--],-->
	['Contact Us', 'Contact_us.htm'],
	
];

