// 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', '/wb/'
	],
	['Values', '/wb/pages/values.php'
	],
	['Employment', '/wb/pages/employment.php'
	],	
	['Login', '/wb/pages/login.php'
	],
	['Services', '/wb/pages/services.php', null,
		['Chemicals', '/wb/pages/chemicals.php'],
		['Repairs', '/wb/pages/repairs.php'],
		['Retail Sales', '/wb/pages/retail-sales.php'],
		['Swim Lessons', '/wb/pages/swim-lessons.php'],		
	],
	['Client Area', null, null,
		['Assessments', '/wb/pages/assessment.php'],
		['Technical Information', '/wb/pages/technical-information.php'],
		['Swim Lessons', '/wb/pages/swim-lessons.php'],
		['Repairs', '/wb/pages/repairs.php'],		
		['Retail Sales', '/wb/pages/retail-sales.php'],	
	],	
	['Contact', '/wb/pages/contact.php'
	]
];

