function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home Page",  null, null);
	menu.addItem("patientid", "For Patients & Public", "Patients & Public",  null, null);
	menu.addItem("resid", "Research & Education", "Research & Education",  null, null);
	menu.addItem("cancerid", "Cancer Treatment", "Cancer Treatment",  null, "cancertreatment.htm");
	menu.addItem("aboutid", "About RCC", "About RCC",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("Contactid", "Contact Us", "Contact us",  null, null);


	menu.addSubItem("homeid", "Home Page", "Home Page",  "Index.htm");
	


	menu.addSubItem("patientid", "About Cancer", "About Cancer",  "About_cancer.htm");
	menu.addSubItem("patientid", "New Patient Registration", "New Patient Registration",  "New Patient Registration.htm");
	menu.addSubItem("patientid", "Support Programmes", "Support Programmes",  "Under Construction.htm");
	menu.addSubItem("patientid", "Clinical Trials", "Clinical Trials",  "clinical Trials.htm");
	menu.addSubItem("patientid", "Patient Welfare", "Patient Welfare",  "patient_welfare.htm");
	menu.addSubItem("patientid", "Telemedicine", "Telemedicine",  "Telemedicine.htm");

	
	menu.addSubItem("resid", "Clinical & Scientific Resources", "Clinical & Scientific Resources",  "Under construction.htm");
	menu.addSubItem("resid", "Research Programmes", "Research Programmes",  "research programmes.htm");
	menu.addSubItem("resid", "Courses & Training Programmes", "Courses & Training Programmes",  "courses & training.htm");
	menu.addSubItem("resid", "Outreach Programmes", "Outreach Programmes",  "Outreachprogrammes.htm");
	menu.addSubItem("resid", "Library & Information Services", "Library & Information Services",  "Library_information.htm");


	menu.addSubItem("cancerid", "Speciality Clinics", "Speciality Clinics",  "Speciality_clinics.htm");
	menu.addSubItem("cancerid", "Protocol Guidelines", "Protocol Guidelines",  "protocolguidelines.htm");
	
	menu.addSubItem("aboutid", "Guide to RCC", "Guide to RCC",  "GuidetoRCC.htm");
	menu.addSubItem("aboutid", "Departments", "Departments",  "Departments.htm");
	menu.addSubItem("aboutid", "Faculty", "Faculty",  "faculty.htm");
	
	
	
	menu.addSubItem("newsid", "News & Publications", "News & Publications",  "News&publications.htm");
	menu.addSubItem("newsid", "Events", "Events",  "Events.htm");
	menu.addSubItem("newsid", "Career Opportunities", "Career Opportunities",  "carreer opportunities1.htm");
		
	
	menu.addSubItem("Contactid", "Contact Us", "Contact Us",  "mailto:webmaster@rcctvm.org");
	

	menu.showMenu();
}