// 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

buttonPath = "images/buttons/new-buttons";

var MENU_ITEMS = [
	['about', 'index.php', null,
 	 ['staff', 'staff.php', null],
	 ['studio', 'studio.php', null],
	],
    ['classes', 'classes.php', null,
	 ['toddler', 'toddlerpreschool.php', null],
	 ['children', 'childyouth.php', null],
	 ['adult', 'adultpro.php', null],
	 ['summer', 'summer.php', null],
	 ['homeschool', 'homeschool.php', null],
	 ['recreational', 'recreational.php', null],
	],
	['workshops', 'workshops.php'],
	['performances', 'performances.php'],
	['preschool', 'preschool.php'],
	['registration', 'registration.php'],
	['newsletter', 'newsletter.php'],
	['dancewear', 'dancewear.php'],
	['calendar', 'calendar.php'],
	['blank', null, null]
];

var TITLE_GRAPHICS = [
	["images/aboutus.jpg"],
	["images/classes.jpg"],
	["images/workshops.jpg"],
	["images/performances.jpg"],
	["images/pre-school.jpg"],
	["images/registration.jpg"],
	["images/newsletter.jpg"],
	["images/dancewear.jpg"],
		[null]
];

var PAGES = 
{ 
  "about" : 0,
  "staff" : 1,
  "studio" : 2,
  "classes" : 1,
  "toddler" : 2,
  "children" : 3,
  "adult" : 4,
  "summer" : 5,
  "homeschool" : 6,
  "recreational" : 7,
  "workshops" : 2,
  "performances" : 3,
  "preschool" : 4,
  "registration" : 5,
  "newsletter" : 6,
  "dancewear" : 7,
  "calendar" : 8
};


