// 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', 'index.php', null],

	['Services &#187;', null, null,
		['Oil And Gas', 'generator.php?page=oilandgas', null],
		['Air Ambulance/Medevac/SAR', 'generator.php?page=ambmedsar', null],
		['Forestry', 'generator.php?page=forestry', null],
		['Sight Seeing', 'generator.php?page=sights', null],
	],

	['Our Aircraft &#187;', null, null,
		['Eurocopter AS-350BA (AStar)', 'generator.php?page=astar', null],
		['Bell Jet Ranger 206', 'generator.php?page=jetranger', null],
	],
	
	['Weather &#187;', null, null,		
		['Nav Canada', 'http://www.navcanada.ca', null],
		['Flight Planning', 'http://www.flightplanning.navcanada.ca/cgi-bin/CreePage.pl?Langue=anglais&NoSession=NS_Inconnu&Page=forecast-observation&TypeDoc=html', null],
		['Cold Lake Weather', 'http://www.weathernetwork.com/weather/CAAB0075', null],
	],
		
	['About Us &#187;', 'generator.php?page=about', null,
		['Safety', 'generator.php?page=safety', null],
	],
  	
	['Contact Us', 'generator.php?page=contact', null],	
	
];
