// 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 Page','index.asp', {'tw' : '_parent'}],
	['About Us','about_us.asp', {'tw' : '_parent'}],
	['Manila', null, null,
		['Day Tours','manila_day_tours.asp', {'tw' : '_parent'}],
		['Hotel Packages','manila_hotel_packages.asp', {'tw' : '_parent'}]		
	],
	['Island Holiday', null, null,
		['Bohol','island_holiday_bohol.asp', {'tw' : '_parent'}],
		['Boracay','island_holiday_boracay.asp', {'tw' : '_parent'}],
		['Cebu Island Resort','island_holiday_cebu_island_resort.asp', {'tw' : '_parent'}],
		['Cebu City Hotel','island_holiday_cebu_city_hotel.asp', {'tw' : '_parent'}], 
		['Cebu - Bohol','island_holiday_cebu_bohol.asp', {'tw' : '_parent'}], 
		['Palawan','island_holiday_palawan.asp', {'tw' : '_parent'}]
	],
	['Heritage', null, null,
		['Baguio','heritage_baguio.asp', {'tw' : '_parent'}],
		['Banaue / Sagada','heritage_banaue_sagada.asp', {'tw' : '_parent'}],
		['Laoag / Vigan','heritage_laoag_vigan.asp', {'tw' : '_parent'}]
	],
	['Adventure', null, null,
		['Bicol','adventure_bicol.asp', {'tw' : '_parent'}],
		['Bohol','adventure_bohol.asp', {'tw' : '_parent'}],
		['Cebu','adventure_cebu.asp', {'tw' : '_parent'}],
		['Palawan','adventure_palawan.asp', {'tw' : '_parent'}]		
	],
	['Local Residents', null, null,
	 	['Boracay','local_residents_boracay.asp', {'tw' : '_parent'}],
	 	['Cebu','local_residents_cebu.asp', {'tw' : '_parent'}],
		['Bohol','local_residents_bohol.asp', {'tw' : '_parent'}],
		['Davao','local_residents_davao.asp', {'tw' : '_parent'}],
		['Palawan Adventure','local_residents_palawan.asp', {'tw' : '_parent'}]
	],
	['Golf Packages', null, null,
		['Tagaytay Highlands / Eagle Ridge','golf_highlands_eagleridge.asp', {'tw' : '_parent'}],
		['Spendido / Orchard','golf_splendido_orchard.asp', {'tw' : '_parent'}]		
	],
	['Agent Login', 'javascript:login()', {'tw' : '_parent'}],
	['Brochure','brochure/index.htm', {'tw' : '_parent'}],
	['Japan Visa','japan_visa.asp', {'tw' : '_parent'}],
	['Reservation','reservation.asp', {'tw' : '_parent'}]
];
