// 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.html'],
	['treatments', null, null,
		['hair removal', 'hair_removal.html'],
		['for your face', null, null,
			['laser peel', 'laser_peel.html'],
			['microdermabrasion', 'microdermabrasion.html'],
			['facials', 'facials.html'],
			['make-up & other', 'makeup.html']
		],
		['for your hair', 'hair.html'],		
		['to relax','massage.html'],	
		['for your hands & feet', 'hand_foot.html'],
		['special occasions','bridal.html'],
		['just for men','men.html'],
	],	
	['products', 'products.html'],
	['gallery', 'gallery.html'],
	['location', 'location.html'],
	['about us', 'aboutus.html']
];


