// 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 = [
	
	['Custom Trailers', null, null,
		// this is how item scope settings are defined
		['Custom Trailers Info', 'index.php?id=75'],
		// this is how multiple item scope settings are defined
		['Past Custom Photos', 'index.php?id=76']
			],
	

	['Trailer Catalog', null, null,
		['Box Trailers', null, null,
			['Light Duty Box Trailers','index.php?id=51'],
			['Deluxe Box Trailers','index.php?id=50'],
			['Heavy Duty Box Trailers ','index.php?id=49']
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Tandem Box Trailers', null, null,
			['Heavy Duty Tandem','index.php?id=53']

		],
			['Vehicle Transport Trailers', null, null,
			['Car Trailers','index.php?id=55'],
			['Bike Trailers', 'index.php?id=56'],
			['Golf Buggy Trailers','index.php?id=57'],
			['Go-kart Trailers', 'index.php?id=58']
		],
		['Off Road Trailers', null, null,
			['Single Axel', 'index.php?id=60' ],
			['Tandem', 'index.php?id=61'],
					],
					['Cage Trailers', null, null,
			['Deluxe Cage Trailers', 'index.php?id=63' ],
			['Heavy Duty Cage Trailers', 'index.php?id=64'],
					],
					['Tradesman Trailers', null, null,
			['Single Axel', 'index.php?id=66' ],
			['Tandem', 'index.php?id=67'],
					],
					['Animal Transport Trailers', null, null,
			['Horse Floats', 'index.php?id=69' ],
			['Small Animal','index.php?id=70'],
					],
					['Advertising/BillBoard', null,null],
					['Luggage or Pantec Trailers',  'index.php?id=72'],
['Tippers',  'index.php?id=73'],
['Tilters',  'index.php?id=74'],
],
	['Useful Links', 'index.php?id=46'],
['FAQ', 'index.php?id=45'
	],
];

