// 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','/'],
	['Classes', null, null,
		['Private Studio', '/privatestudio.html'],
                	['Workshops','/workshops.html'],
	],	
	['Products', null, null,
		['Exercise DVDs', '/ExerciseProtocols.html'],
		['Happy Feet PDF on CD', '/HappyFeet.html'],
		['Pregnancy Book & DVD', null, null,
                     ['About Book', '/book1-info.html'],
                     ['About DVD', '/dvd1-info.html'],
                     ['Buy Book/DVD', '/book1.html'],
                     ],
		['Stretches PDF on CD', '/StretchProtocols.html'],
	],
        ['Teacher Training', '/TeacherTraining1.html'],
	['Contact', '/contact.html'],
];

