// 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 = [
['Programs', null, null,
	['Crisis Management', null, null,
			['Hotline Number', 'crisis.html'],
			['Transitional Housing', 'safe.html'],
			['Emergency Shelter', 'shelter.html'],
			['Your Legal Rights', null, null,
                	['Restraining Orders', null, null,
				['Definition Of', 'restraining1.html'],
				['Obtaining One', 'restraining2.html']
			],
                	['Legal Advocacy', 'legal.html']
					],
// there must be no comma after the last element
			],
			
	['Supervised Visitation', null, null,
		['Visitation Services', 'vcservices.html'],
		['Locations and Hours', 'vclocations.html'],
 	      ['Fees', 'vcfees.html']
	],

	['Clinical Services', null, null,
			['Confidential Support Group', 'cdvsg.html'],
                	['Residential Support Groups', 'residential.html'],
					['Community Outreach/Ed.', null, null,
					['Kids Are Talking (KATS)', 'kats.html'],
					['Expressive Arts Group', 'arts.html'],
					
			['Dating Violence Prevention', 'later.html'],
			['Bullying Prevention', 'bully.html']
			],

],
],
			
['Events', null, null,
		['Fundraising', null, null,
			['Non-Event', 'non.html'],
                	['Golf Classic', 'golf.html'],
		      ['Thanks-4-Giving Road Race', null, null,
				['Race Details', 't4g1.html'],
				['Course', 't4g2.html'],
				['Prizes', 'prizes.html'],
				['Registration', 't4g4.html'],
				['2011 Race Photos', 't4g5.html'],
				['2011 Results', 'http://www.coolrunning.com/results/11/ma/Nov24_10thAn_set1.shtml']

			],

  			['Sweet Valentine', 'sv.html']	
		],
	
		['Community Awareness', null, null,
			['Candlelight Vigil', 'candle.html']
		]
	
],

	
	['Opportunities', null, null,
		['Employment', null, null,
			['None at this time', 'later.html']	
		],
	
		['Volunteer/Internship', null, null,
			['Community Outreach', 'outreach.html'],
                ['Volunteers and Interns', 'volunteer.html']
]
	
],

		['Home','index.html'],

   		['Newsletter','docs/Spring-Summer Newsletter.pdf']

];



