function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

menu = new Menu();
menu.addItem("webmasterid", "HOME", "Home", "../index.html");
menu.addItem("aboutusid", "ABOUT US", "About Us",  null, null);
menu.addItem("elemid", "ELEMENTARY", "Elementary",  null, null);
menu.addItem("hsid", "HIGH SCHOOL", "High School",  null, null);
menu.addItem("collegeid", "COLLEGIATE", "Collegiate", null, null);
menu.addItem("gradid", "GRADUATE SCHOOL", "Graduate School", null, null);
menu.addItem("helpid", "HELP", "Site Map", "../sitemap.html" );  

	menu.addSubItem("aboutusid", "Welcome", "Welcome from the Rector",  "http://www.letran.edu/about/rectors.html");
        menu.addSubItem("aboutusid", "Heritage of the Colegio", "Heritage of the Colegio","http://www.letran.edu/about/heritage.html");
        menu.addSubItem("aboutusid", "History of the Colegio", "History of Letran","http://www.letran.edu/about/history.html");
	menu.addSubItem("aboutusid", "Mission & Vision", "Mission & Vision","http://www.letran.edu/about/vision.html");
	menu.addSubItem("aboutusid", "Institutional Objectives", "Institutional Objectives","http://www.letran.edu/about/objectives.html");
	menu.addSubItem("aboutusid", "General Strategies", "General Strategies","http://www.letran.edu/about/strategies.html");
	menu.addSubItem("aboutusid", "The Colegio's Symbols", "The Colegio's Symbols","http://www.letran.edu/about/symbols.html");
	menu.addSubItem("aboutusid", "Philosophy of Education", "Philosophy of Education","http://www.letran.edu/about/dominican.html");
	menu.addSubItem("aboutusid", "Board of Trustees", "Board of Trustees","http://www.letran.edu/about/board.html");
	menu.addSubItem("aboutusid", "Office of the Rector", "Office of the Rector","http://www.letran.edu/about/officeoftherector.html");
	menu.addSubItem("aboutusid", "Religious Affairs Division.", "Religious Affairs Division.","http://www.letran.edu/about/religiousaffairs.html");
	menu.addSubItem("aboutusid", "Academic Affairs Division.", "Academic Affairs Divisionision","http://www.letran.edu/about/academicaffairs.html");
	menu.addSubItem("aboutusid", "Financial Affairs Division.", "Financial Affairs Division.","http://www.letran.edu/about/financialaffairs.html");
	menu.addSubItem("aboutusid", "Support Services Division.", "Support Affairs Division.","http://www.letran.edu/about/support.html");
	

menu.addSubItem("elemid", "General Regulations", "General Regulations", "http://www.letran.edu/elementary/index.html#regulations");
menu.addSubItem("elemid", "Admission Requirements", "Admission Requirements", "http://www.letran.edu/elementary/index.html");
menu.addSubItem("elemid", "Curriculum ","Curriculum ", "http://www.letran.edu/elementary/elem_curriculum.html");
menu.addSubItem("elemid", "Departmental Objectives ","Departmental Objectives ", "http://www.letran.edu/elementary/index.html");
menu.addSubItem("elemid", "Subject Description ","Subject Description ", "http://www.letran.edu/elementary/elem_curriculum.html");
menu.addSubItem("elemid", "Student Organizations ","Student Organizations ", "http://www.letran.edu/elementary/elem_organizations.html");
menu.addSubItem("elemid", "Awards & Scholarships","Awards & Scholarships", "http://www.letran.edu/elementary/elem_awards.html");
menu.addSubItem("elemid", "Faculty Line-up ","Faculty Line-up ", "http://www.letran.edu/elementary/elem_faculty.html");
menu.addSubItem("elemid", "Elementary Calendar", "School Calendar", "http://www.letran.edu/elementary/index.html#calendar");

menu.addSubItem("hsid", "General Regulations", "General Regulations", "http://www.letran.edu/highschool/index.html");
menu.addSubItem("hsid", "Admission Requirements", "Admission Requirements", "http://www.letran.edu/highschool/index.html");
menu.addSubItem("hsid", "Curriculum ","Curriculum ", "http://www.letran.edu/highschool/hs_curriculum.html");
menu.addSubItem("hsid", "Departmental Objectives ","Departmental Objectives ", "http://www.letran.edu/highschool/index.html");
menu.addSubItem("hsid", "Subject Description ","Subject Description ", "http://www.letran.edu/highschool/hs_curriculum.html");
menu.addSubItem("hsid", "Student Organizations ","Student Organizations ", "http://www.letran.edu/highschool/hs_organizations.html");
menu.addSubItem("hsid", "Awards & Scholarships","Awards & Scholarships", "http://www.letran.edu/highschool/hs_awards.html");
menu.addSubItem("hsid", "Faculty Line-up ","Faculty Line-up ", "http://www.letran.edu/highschool/hs_faculty.html");
menu.addSubItem("hsid", "High School School Calendar", "School Calendar", "http://www.letran.edu/highschool/index.html");

menu.addSubItem("collegeid", "General Regulations", "General Regulations", "http://www.letran.edu/collegiate/index.html");
menu.addSubItem("collegeid", "Admission Requirements", "Admission Requirements", "http://www.letran.edu/collegiate/index.html");
menu.addSubItem("collegeid", "Awards & Scholarships", "Awards & Scholarships", "http://www.letran.edu/collegiate/college_awards.html");
menu.addSubItem("collegeid", "College of Business Administration and Accountancy [CBAA]", "CBAA", "http://www.letran.edu/collegiate/cbaa.html");	
menu.addSubItem("collegeid", "College of Liberal Arts and SCiences [CLAS]", "CLAS", "http://www.letran.edu/collegiate/clas.html");
menu.addSubItem("collegeid", "Student Organizations", "Student Organizations", "http://www.letran.edu/collegiate/college_organizations.html");
menu.addSubItem("collegeid", "Collegiate Calendar", "Collegiate Calendar", "http://www.letran.edu/collegiate/index.html");

menu.addSubItem("gradid", "MBA Program", "MBA Program", "http://www.letran.edu/graduateschool/mbareg.html");	
menu.addSubItem("gradid", "MBA-SMP Program", "MBA-SMP Program", "http://www.letran.edu/graduateschool/mbasmp.html");	
menu.addSubItem("gradid", "Doctor in BUsiness", "Doctor in BUsiness", "http://www.letran.edu/graduateschool/docinbus.html");	
menu.addSubItem("gradid", "Admission Requirements", "Admission Requirements", "http://www.letran.edu/admission.html");


	menu.showMenu();
}