function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Click On Drop Down",  null, null);	
	menu.addItem("aboutusid", "About Us", "Click On Drop Down",  null, null);
	menu.addItem("smhservicesid", "SMH Services", "Click On Drop Down",  null, null);
	menu.addItem("smhpcid", "SMH PC's", "Click On Drop Down",  null, null);
	menu.addItem("catalogid", "Online Repair Catalog", "Click On Drop Down",  null, null);
	menu.addItem("newsid", "SMH News", "Click On Drop Down",  null, null);
	menu.addItem("contactid", "Contact US", "Click On Drop Down",  null, null);
	menu.addItem("directionsid", "Directions", "Click On Drop Down",  null, null);
	menu.addItem("termsandconditionsid", "Terms and Conditions", "Click On Drop Down",  null, null);

	menu.addSubItem("homeid", "Home", "", "http://www.smhelectronics.com/index.html");
	
	menu.addSubItem("aboutusid", "Company Profile", "", "http://www.smhelectronics.com/profile.html");
	menu.addSubItem("aboutusid", "A+ Service Center", "",  "http://www.smhelectronics.com/aplus2.html");
	menu.addSubItem("aboutusid", "Quality Service", "",  "http://www.smhelectronics.com/quality2.html");
	menu.addSubItem("aboutusid", "Customer Relations", "",  "http://www.smhelectronics.com/customer2.html");
	menu.addSubItem("aboutusid", "OEM Links", "",  "http://www.smhelectronics.com/table.htm");
	
	menu.addSubItem("smhpcid", "SMH PC's", "",  "http://www.smhelectronics.com/basepc2.html"); 	

	menu.addSubItem("catalogid", "Flat Rate Repair Rates", "",  "http://www.smhelectronics.com/flatrate.html");     	
	
	menu.addSubItem("smhservicesid", "Component Level Repair", "",  "http://www.smhelectronics.com/repair2.html");
	menu.addSubItem("smhservicesid", "Product Re-Manufacturing", "",  "http://www.smhelectronics.com/remanuf2.html");
	menu.addSubItem("smhservicesid", "Service Maintenance Programs", "",  "http://www.smhelectronics.com/maint2.html");
	menu.addSubItem("smhservicesid", "Authorized Service Center", "",  "http://www.smhelectronics.com/service2.html");
	menu.addSubItem("smhservicesid", "Authorized Resellers", "",  "http://www.smhelectronics.com/resell2.html");
	menu.addSubItem("smhservicesid", "Network Consulting", "",  "http://www.smhelectronics.com/consult2.html");
	
	menu.addSubItem("newsid", "SMH News", "",  "http://www.smhelectronics.com/news2.html");
	
	menu.addSubItem("contactid", "Contact Us", "", "http://www.smhelectronics.com/contact.html");
	
	menu.addSubItem("directionsid", "Directions", "", "http://www.smhelectronics.com/directions.html");

	menu.addSubItem("termsandconditionsid", "Terms and Conditions", "", "http://www.smhelectronics.com/terms.html");	

	menu.showMenu();
}