// 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 = [
	['General', null, null,
		['Home','http://www.parkstreetacademy.com/index.html', {'tw' : '_self'}],
		['Admissions','http://www.parkstreetacademy.com/general/admissions.htm', {'tw' : '_self'}],
		['Parent Alliance Committee','http://www.parkstreetacademy.com/general/pac.htm', {'tw' : '_self'}],
		['Contact Us','http://www.parkstreetacademy.com/general/contactus.htm', {'tw' : '_self'}],
		['Directions','http://www.parkstreetacademy.com/general/directions.htm', {'tw' : '_self'}]
	],
	['Staff','http://www.parkstreetacademy.com/staff.htm', {'tw' : '_self'},
		['Freshmen','http://www.parkstreetacademy.com/staff/freshmen.htm', {'tw' : '_self'}],
		['Sophomores','http://www.parkstreetacademy.com/staff/sophomores.htm', {'tw' : '_self'}],
		['Senior-North','http://www.parkstreetacademy.com/staff/seniornorth.htm', {'tw' : '_self'}],
		['Senior-South','http://www.parkstreetacademy.com/staff/seniorsouth.htm', {'tw' : '_self'}],
		['Administration','http://www.parkstreetacademy.com/staff/administration.htm', {'tw' : '_self'}]
	],
	['Curriculum','http://www.parkstreetacademy.com/curriculum.htm', {'tw' : '_self'},
		['Pre-School','http://www.parkstreetacademy.com/curriculum/preschool.htm', {'tw' : '_self'},
		 	['Freshmen Schedule','http://www.parkstreetacademy.com/curriculum/preschool/freshmenschedule.htm', {'tw' : '_self'}],
			['Sophomore Schedule','http://www.parkstreetacademy.com/curriculum/preschool/sophomoreschedule.htm', {'tw' : '_self'}]],
		['Pre-K/Kindergarten','http://www.parkstreetacademy.com/curriculum/prek.htm', {'tw' : '_self'},
		 	['Senior Music','http://www.parkstreetacademy.com/curriculum/prek/seniors/music.htm', {'tw' : '_self'}],
			['Senior Fine Arts','http://www.parkstreetacademy.com/curriculum/prek/seniors/finearts.htm', {'tw' : '_self'}],
			['Senior Schedule','http://www.parkstreetacademy.com/curriculum/prek/seniors/schedule.htm', {'tw' : '_self'}]],
		['Learning The PSA Way','http://www.parkstreetacademy.com/curriculum/psaway.htm', {'tw' : '_self'}],
		['Slice of PSA Life','http://www.parkstreetacademy.com/curriculum/sliceofpsalife.htm', {'tw' : '_self'}]
	],	
	['Calendar', null, null,
		['Monthly','http://www.parkstreetacademy.com/calendar/monthly.htm', {'tw' : '_self'}],
		['Yearly','http://www.parkstreetacademy.com/calendar/yearly.htm', {'tw' : '_self'}]
	],
	['Summer Camp','http://www.parkstreetacademy.com/programs/summercamp.htm',  {'tw' : '_self'}
	],
	['Programs','http://www.parkstreetacademy.com/programs.htm', {'tw' : '_self'},
		['Enrichment','http://www.parkstreetacademy.com/programs/enrichment.htm', {'tw' : '_self'},
		 	['Barres & Beams','http://www.parkstreetacademy.com/programs/enrichment/barresandbeams.htm', {'tw' : '_self'}],
			['Tennis','http://www.parkstreetacademy.com/programs/enrichment/tennis.htm', {'tw' : '_self'}]],
		['Kids Clubs','http://www.parkstreetacademy.com/programs/kidsclubs.htm', {'tw' : '_self'},
		 	['Book Crew Review','http://www.parkstreetacademy.com/programs/kidsclubs/bookcrew.htm', {'tw' : '_self'}],
			['Make & Take Crafts','http://www.parkstreetacademy.com/programs/kidsclubs/crafts.htm', {'tw' : '_self'}],
			['WizKidz','http://www.parkstreetacademy.com/programs/kidsclubs/wizkidz.htm', {'tw' : '_self'}],
			['Kids Café','http://www.parkstreetacademy.com/programs/kidsclubs/kidscafe.htm', {'tw' : '_self'}],
			['Dance','http://www.parkstreetacademy.com/programs/kidsclubs/dance.htm', {'tw' : '_self'}]],
		['After School Program','http://www.parkstreetacademy.com/programs/afterschool.htm', {'tw' : '_self'}]
	],
	['Photo Gallery', null, null,
		['Kids Art','http://www.parkstreetacademy.com/gallery/kidsart.htm', {'tw' : '_self'}],
		['Special Days','http://www.parkstreetacademy.com/gallery/specialdays.htm', {'tw' : '_self'}]
	]
];