// 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', '/', homeNavStyle],

	['Training', "/training-curriculum", navStyle,
		['Training Curriculum', '/training-curriculum', resources2NavStyle],
		['Public Schedule', '/schedule', resources2NavStyle],
		['Virtual Training', '/virtualtraining', resources2NavStyle],
		['Onsite Training', '/onsite', resources2NavStyle],
		['Review Sessions', '/reviewsessions', resources2NavStyle],
		['Guerrilla Events', '/guerrillaevents', resources2NavStyle],
		['', '', resources2Bottom]
	],

// NOTE: the course/category menu items that are generated dynamically by the app, saved as menu_items_courses.js, then spliced into this spot 

//],

	['Onsite', '/onsite', navStyle],
	['Webcasts', '/webcasts', navStyle],

	
	['Resources', "/blogs", resourcesNavStyle,
		['Instructor Blogs', '/blogs', resources2NavStyle],
		['Webcasts', '/webcasts', resources2NavStyle],
		['Social Media', '/socialmedia', resources2NavStyle],
		['Newsletters', '/newsletter', resources2NavStyle],
		['', '', resources2Bottom]
	],

	['About Us', '/companyoverview', aboutUsNavStyle,
		['Company Overview', '/companyoverview', aboutUs2NavStyle],
		['Technical Staff', '/technicalstaff', aboutUs2NavStyle],
		['How we support learning', '/howwesupportlearning', aboutUs2NavStyle],
		['Our Philosophy', '/ourphilosophy', aboutUs2NavStyle],
		['Testimonials', '/testimonials', aboutUs2NavStyle],
		['Our Partners', '/partners', aboutUs2NavStyle],
		['Job Openings', '/jobs', aboutUs2NavStyle],
		['', '', aboutUs2Bottom]
	],
	
	['Contact', '/contactus', contactUsNavStyle]
];


