/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['Home', 'index.aspx'
	],
	['Flight Options', 'trial_info.aspx', null,
		['Introduction', 'trial_info.aspx'],
		['Gliding Experiences', 'experience.aspx?e=1'],
		['Air Experience Flights', 'experience.aspx?e=2'],
		['Training Packages', 'experience.aspx?e=3'],
		['Purchase Flight Online', 'purchase_flight.aspx'],
		['Air Experience Brochure', 'Sydney_Gliding_Air_Experience.pdf', { 'tw': 'new'}],
		['Feedback', 'feedback.aspx'],
		['Other Information', 'trial_other.aspx'],
	],
	['Gift Certificates', 'trial_gift.aspx', null,
		['Information', 'trial_gift.aspx'],
		['Purchase Gift Online', 'purchase_gift.aspx'],
	],
	['Contact Us', 'contact_bookings.aspx', null,
		['Make a Booking', 'contact_bookings.aspx'],
		['Contact Details', 'contact_details.aspx'],
		['Map & Directions', 'contact_map.aspx'],
	],
	['Members', 'members_login.aspx', null,
		['Login', 'members_login.aspx'],
	],
	['Gliding', 'gliding_about.aspx', null,
		['About Gliding', 'gliding_about.aspx'],
		['Learn to Fly','gliding_learn.aspx'],
		['The Club','gliding_club.aspx'],
		['Photo Gallery', 'gliding_gallery.aspx'],
		['Terms & Conditions', 'terms_conditions.aspx'],
	],
];


