/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
var MENU_ITEMS = [
	['Home', 'main.html'
	],
	['Shows', null, null,
		['Close-up', 'closeup.html'],
		['Stage', 'stage.html'],
		['Child's Bithday', 'bday.html'],
		['Corporate Events', 'corp.html']
	],
	['Contact', null, null,
		['E-mail', 'email.html'],
		['Phone: 111-222-3333']
	],
];
*/
var MENU_ITEMS = [
	['Home', 'main.html'
	],
	['Shows', null, null,
		['Close-Up Magic', 'closeup.html'],
		['Stage Magic', 'stage.html'],
		['Kids Shows', 'bday.html'],
		['Corporate Events', 'corp.html'],
		['Other Entertainment', 'other.html'],
	],
	['Schedule', 'schedule.html'
	],
	['Personal', 'personal.html'
	],	
	['Contact', null, null,
		['E-mail', 'email.html'],
		['Phone: 917-549-1272'],
	],
];

