// 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'],
	['Voice Survival Kit', 'voice_survival.php'],
	['Services', 'services.php', null,
		['Benchmark', 'benchmark.php'],
		['Business Development', 'business_development.php'],
		['Capacity Audit', 'capacity_audit.php'],
		['Costs Analysis', 'cost_analysis.php'],
		['Master Service Agreements', 'master_service.php'],
		['Market Analysis', 'market_analysis.php'],
		['Market Research', 'market_research.php'],
		['Regulatory &amp; Licensing', 'regulatory_licensing.php'],
		['Short Term Hire', 'short_term_hire.php']
	],
	['Client Portfolio', 'client_portfolio.php', null,
		['Confidentiality Provision', 'confident_pro.php']
	],
	['About Us', null, null,
		['Corporate', 'corporate.php'],
		['Contact Information', 'contact.php'],
		['Management', 'management.php'],
	]	
];
