function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("about", "About CSi", "About CSi", null, null);
	menu.addItem("bare", "Bare Board Manufacturing", "Bare Board Manufacturing",  null, null);
	menu.addItem("assemble", "Printed Circuit Assembly", "Printed Circuit Assembly",  null, null);
	menu.addItem("art", "Printed Circuit Artwork Layout", "Printed Circuit Artwork Layout",  null, null);
	menu.addItem("contact", "Contact CSi", "Contact CSi",  null, null);
	menu.addItem("specials", "Specials", "Specials", "special.shtml", "special.shtml");

	menu.addSubItem("about", "History", "History",  "history.shtml");
// menu.addSubItem("about", "Who We Are", "Who We Are",  "who.shtml");
	menu.addSubItem("about", "Mission Statement", "Mission Statement",  "mission.shtml");
// menu.addSubItem("about", "Virtual Tour", "Virtual Tour",  "tour.shtml");

	menu.addSubItem("art", "How We Do It", "How we Do it",  "howart.shtml");
// menu.addSubItem("art", "Tips", "Tips",  "artips.shtml");
// menu.addSubItem("art", "Gallery", "Gallery",  "artgal.shtml");
	menu.addSubItem("art", "Request Quote", "Request Quote",  "rfqart.shtml");
	
	menu.addSubItem("bare", "How We Do It", "How we Do it",  "howbare.shtml");
// menu.addSubItem("bare", "Tips", "Tips",  "baretips.shtml");
	menu.addSubItem("bare", "FAQ", "FAQ",  "faqfab.shtml");
// menu.addSubItem("bare", "Gallery", "Gallery",  "baregal.shtml");
	menu.addSubItem("bare", "Request Quote", "Request Quote",  "rfqpcb.shtml");
	
	menu.addSubItem("assemble", "How We Do It", "How we Do it",  "howass.shtml");
// menu.addSubItem("assemble", "Tips", "Tips",  "asstips.shtml");
	menu.addSubItem("assemble", "FAQ", "FAQ",  "faqass.shtml");
// menu.addSubItem("assemble", "Gallery", "Gallery",  "assgal.shtml");
	menu.addSubItem("assemble", "Request Quote", "Request Quote",  "rfqass.shtml");

	menu.addSubItem("contact", "Call/Fax/Mail/Visit/Directions", "Call/Fax/Visit/Directions",  "callfax.shtml");
	menu.addSubItem("contact", "Order", "Order",  "order.shtml");
	menu.addSubItem("contact", "Anonymous FTP", "Anonymous FTP",  "anonftp.shtml");
	menu.addSubItem("contact", "E-Mail", "E-Mail",  "mailto:info@circuitservices.com");


	menu.showMenu();
}
