// 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', 'home.html'],
	
		['Company', null, null,
		// this is how item scope settings are defined
		['About Enovations', 'about.html'],
		['Recent Clients', 'clients.html'],
		['Testimonials', 'test.html'],
		['Contact us', 'contact.html'],
	],

		['Services', null, null,
		// this is how item scope settings are defined
		['BO Project Management', 'boproject.html'],
		['Migration & upgrades', 'migration.html'],
		['Crystal Reporting', 'crystal.html' ],
		['BO Training', 'training.html'],
		['Dashboard Design', 'dashboard.html'],
		['Contract Staffing', 'staffing.html'],
		['Support', 'support.html'],
	],

	['BO Products', null, null,
		// this is how item scope settings are defined
		['BO Enterprise', 'boent.html'],
		// this is how multiple item scope settings are defined
		['BO Edge', 'boedge.html'],
		['Crystal Reports Server', 'sapcrs.html'],
		['Dashboard Design', 'xcelsius.html'],
		['SAP Crystal Solutions', 'sapcrsol.html'],
		
	],

		
	
		['Training', 'training.html'],
		['Clients', 'clients.html'],
	
	['Contact us', 'contact.html'],


];

