// Creating and Managing object


var mc = new MenuCreator();

mc.Start();
mc.Add("Home","index.html","");
mc.Add("About IPES","aboutpes.html","");
mc.Add("About Me","aboutme.html","");
mc.Add("Topics","topics.html","");
mc.Add("Topics Detail","","");
	mc.Start();
	mc.Add("Making PE, sport and other physical activities more inclusive","topic01.html","");
	mc.Add("Motivating the disengaged","topic02.html","");
	mc.Add("Gender / girls","topic03.html","");
	mc.Add("Race and ethnic minorities","topic04.html","");
	mc.Add("Community cohesion","topic05.html","");
	mc.Add("Refugees and asylum seekers","topic06.html","");
	mc.Add("Disability","topic07.html","");
	mc.Add("Child protection","topic08.html","");
	mc.Add("Inclusive Games (practical)","topic09.html","");
	mc.Add("In-house research or surveys","topic10.html","");
	mc.Add("Research supervision","topic11.html","");
	mc.End();
mc.Add("Services","services.html","");
mc.Add("Services Detail","","");
	mc.Start();
	mc.Add("One-day courses","serv01.html","");
	mc.Add("Shorter / twilight sessions","serv02.html","");
	mc.Add("Practical sessions","serv03.html","");
	mc.Add("Courses for ITT, sport science or sports development students","serv04.html","");
	mc.Add("Workshops with disaffected / inactive young people","serv05.html","");
	mc.Add("Workshops for 'A' level, GCSE, JSLA, CSLA students","serv06.html","");
	mc.Add("New forms of in-house consultancy / CPD","serv07.html","");
	mc.Add("Whole department, on-site inclusion training","serv08.html","");
	mc.Add("An 'Inclusion Audit'","serv09.html","");
	mc.Add("Advice / guidance / consultancy","serv10.html","");
	mc.Add("In-house research or surveys","serv11.html","");
	mc.Add("Research supervsion","serv12.html","");
	mc.End();
mc.Add("Endorsements","endsrefs.html","");
mc.Add("Contact Me","contact.html","");
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();

