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

	menu = new Menu();
	menu.addItem("webmasterid", "CSMC - Site Overview", "Home",  null, null);
	menu.addItem("newsid", "Customer Centre - Enter Here", "Customer Centre",  null, null);
	menu.addItem("freedownloadid", "Ford Range - View Here", "Ford Range",  null, null);
	menu.addItem("p", "CSMC Proton - Our Proton Site", "Proton Range",  null, null);
	menu.addItem("miscid", "About CSMC - Details Here", "About CSMC",  null, null);

	
	menu.addSubItem("webmasterid", "CSMC Welcome", "Home",  "index.htm");
	menu.addSubItem("webmasterid", "CSMC Ford", "Home",  "fordmainpage.htm");
	menu.addSubItem("webmasterid", "CSMC Proton", "Home",  "http://dealers.proton.co.uk/bristol-north");
	menu.addSubItem("webmasterid", "CSMC Sitemap", "Home",  "sitemap.htm");

	menu.addSubItem("newsid", "Car Sales", "Car Sales",  "carsalessplash.htm");
	menu.addSubItem("newsid", "Service Centre", "Service Centre",  "service.htm");
	menu.addSubItem("newsid", "Parts & Accessories", "Parts & Accessories",  "parts.htm");
	menu.addSubItem("newsid", "Accident Repair Centre", "Accident Repair Centre",  "bodyshop.htm");
	menu.addSubItem("newsid", "Special Offers", "Special Offers",  "specialoffers.htm");
	menu.addSubItem("newsid", "Motoring Resource Centre", "Motoring Resource Centre",  "resourcesplash.htm");
	menu.addSubItem("newsid", "UK News & Weather", "UK News & Weather",  "news.htm");
	
	menu.addSubItem("freedownloadid", "View Full Ford Range", "View Full Ford Range",  "carrange.htm");
	menu.addSubItem("freedownloadid", "New Car Offers", "New Car Offers",  "newcaroffers.htm");
	menu.addSubItem("freedownloadid", "New Ka", "New Ka",  "ka.htm");
	menu.addSubItem("freedownloadid", "Fiesta", "Fiesta",  "2008fiesta.htm");
      	menu.addSubItem("freedownloadid", "Fusion", "Fusion",  "fusion.htm");
	menu.addSubItem("freedownloadid", "Focus", "Focus",  "2008focus.htm");
	menu.addSubItem("freedownloadid", "Focus ST", "Focus ST",  "focusst.htm");
	menu.addSubItem("freedownloadid", "New Focus RS", "Focus RS",  "newfocusrs.htm");	
	menu.addSubItem("freedownloadid", "Focus Coupé-Cabriolet", "Focus Coupé-Cabriolet",  "focuscc.htm");
	menu.addSubItem("freedownloadid", "New C-MAX", "New C-MAX",  "focuscmax.htm");
	menu.addSubItem("freedownloadid", "New Mondeo", "New Mondeo",  "2007mondeo.htm");
	menu.addSubItem("freedownloadid", "S-MAX", "S-MAX",  "smax.htm");
	menu.addSubItem("freedownloadid", "New Galaxy", "New Galaxy",  "galaxy.htm");
	menu.addSubItem("freedownloadid", "Ranger", "Ranger",  "ranger.htm");
	
	menu.addSubItem("p", "CSMC Proton", "CSMC Proton",  "http://dealers.proton.co.uk/bristol-north");
		
	menu.addSubItem("miscid", "Company Profile", "Company Profile",  "companyprofile.htm");
	menu.addSubItem("miscid", "Contact Us", "Contact Us",  "contactus.htm");
	menu.addSubItem("miscid", "Hours of Business", "Hours of Business",  "hoursofbusiness.htm");
	menu.addSubItem("miscid", "Find Us", "Find Us",  "findus.htm");
	menu.addSubItem("miscid", "Departments & Staff", "Departments & Staff",  "departments.htm");
	menu.addSubItem("miscid", "Legal", "Legal",  "legal.htm");
	menu.addSubItem("miscid", "Site Control & Credits", "Site Control & Credits",  "sitecontrol.htm");
	menu.addSubItem("miscid", "Site Map", "Site Map",  "sitemap.htm");
	
	menu.showMenu();
}