// 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 = [
	['Day Tours', 'daytours.html'],
	
	['Rentals', 'rentals.html'],	
	
	['Camping Safaris', 'campsaf.html'],
	
	['Camping Expeditions', 'campexp.html'],
	
	['War World II Tours', 'worldwar.html'],
	
	['Bird Watching', 'birdtours.html']
];

