// 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', null, null,
		['Our Firm', 'home/ourfirm.html', {'tw' : 'indexframe'}],
		['Community Involvement', 'home/community.html', {'tw' : 'indexframe'}],
		['Publications & Articles', 'home/pubarticles.html', {'tw' : 'indexframe'}],
		['Events', 'home/events.html', {'tw' : 'indexframe'}],
		['Forms', 'home/forms.html', {'tw' : 'indexframe'}],
		['Photo Gallery', 'home/picture.html', {'tw' : 'indexframe'}]
	],
	['Legal Services', null, null,
		['Legal Services', 'legal/legal.html', {'tw' : 'indexframe'}],
		['Mediation & Collaborative Law', 'legal/mediation.html', {'tw' : 'indexframe'}],
		['Litigation Process', 'legal/litigationprocess.html', {'tw' : 'indexframe'}],
	],
	['Attorney & Staff Profiles', null, null,
		['Jolie Gelman Weinberg', 'staff/jolieweinberg.html', {'tw' : 'indexframe'}],
		['Marni B. Schwartz', 'staff/marnischwartz.html', {'tw' : 'indexframe'}],
		['Sarah Novak Nesbitt', 'staff/saranesbitt.html', {'tw' : 'indexframe'}],
		['Tracey L. Perrick', 'staff/traceylperrick.html', {'tw' : 'indexframe'}],
		['Staff', 'staff/staff.html', {'tw' : 'indexframe'}]
	],
	['Professional Organizations', 'org/organizations.html', {'tw' : 'indexframe'}],
	['Office Directions', 'direction/directions.html', {'tw' : 'indexframe'}]
];

