/*
* Don't change or remove the head comments!
*
* DHTML hierarchical, object oriented menu: VB MENU 1.5
* Copyright (C) 2003-2004  Vladimir Bodurov
*
*   Version  1.5  2004-03-06
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.

* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Copy of GNU Lesser General Public License at: http://www.gnu.org/copyleft/lesser.txt
*
* Source code home page: http://www.bodurov.com/menu.html
*/

// Creating and Managing object

var mc = new MenuCreator();

mc.Start();
mc.Add("About Us");
	mc.Start();
	mc.Add("EAP","about.htm","_self");
	mc.Add("Our Team","abt_ourteam.htm","_self");
	mc.Add("Research","abt_research.htm","_self");
	mc.End();
mc.Add("Services");
	mc.Start();
	mc.Add("Stepping Stones Center","serv_stones.htm","_self");
		mc.Start();
		//mc.Add("Play Groups","serv_pg.htm","_self");
		mc.Add("School Readiness Groups","serv_srg.htm","_self");
		mc.Add("Friendship Skills Group","serv_fsg.htm","_self");
		mc.Add("Life Skills Group","serv_lsg.htm","_self");
		mc.Add("Music Group","serv_mg.htm","_self");
		mc.Add("Yoga Group","serv_yg.htm","_self");
		mc.Add("Centre based ABA programmes - 1:1 therapy","serv_1therapy.htm","_self");
		mc.End();
	mc.Add("Home based ABA Programmes - Supervision Models","services.htm","_self");
		mc.Start();
		mc.Add("Fortnightly Model","serv_fortnight.htm","_self");
		mc.Add("Workshop Model","serv_workshop.htm","_self");
		mc.End();
	mc.Add("Trainings");
		mc.Start();
		mc.Add("Community Presentations","serv_community.htm","_self");
		mc.Add("ABA HPSS - Parent Training","serv_aba.htm","_self");
		mc.End();
	mc.Add("Assessments","serv_assessments.htm","_self");
	mc.End();
mc.Add("Partnerships");
	//mc.Start();
	//mc.Add("WEAP","partner_weap.htm","_self");
	//mc.Add("ANDI Initiative","partner.htm","_self");
	//mc.End();
mc.Add("FAQs");
mc.Add("Therapist Employment");
	mc.Start();
	mc.Add("Tips on Finding and Hiring Therapists","therapist.htm","_self");
	mc.Add("Do you want to be a Therapist?","beatherapist.htm","_self");
	mc.End();
mc.Add("Contact Us");
mc.End();

// if you uncomment this the menu will be vertical instead of horizontal
//mc.Vertical();
// if you uncomment this the box will be centered
//mc.Center();
//if you uncomment this you will have to write the first level youself
mc.DoNotWriteFirstLevel();

mc.Draw();