// Creating and Managing object


var mc = new MenuCreator();

mc.Start();

mc.Add("Patients and Professionals");
	mc.Start();
	mc.Add("General FAQ","patientsandprofessionals.html#general","_self");
	mc.Add("Patient FAQ","patientsandprofessionals.html#patients","_self");
	mc.Add("Health Care Professional FAQ","patientsandprofessionals.html#pros","_self");
	mc.End();

mc.Add("Health Services","healthservices.html","_self");
	mc.Start();
	mc.Add("On-site Testing & Screening","healthservices.html#onsitetesting","_self");
	mc.Add("Hormone Assessment Quiz","healthservices.html#hormonetest","_self");
	mc.Add("Immunizations","healthservices.html#immunizations","_self");
	mc.Add("Disease State Management and One-on-One Pharmacist Consultation","healthservices.html#diseasestate","_self");
	mc.End();
	
mc.Add("");	

mc.Add("Senior Care");
	mc.Start();
	mc.Add("Senior Care Program","seniorcare.html#seniorcare","_self");
	mc.Add("Unit Dose Pack","seniorcare.html#unitdose","_self");
	mc.End();

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();
