//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("HomeId", "Home", "Home",  "/default.aspx", null);
	menu.addItem("AvailableId", "Available Pipes", "Available Pipes",  "ProductsList.aspx?CategoryID=3", null);
	menu.addItem("GalleryId", "Gallery Pipes", "Gallery Pipes",  "ProductsGalleryList.aspx?CategoryID=5", null);
	menu.addItem("AboutId", "About", "About",  null, null);
	menu.addItem("LinkId", "Links", "Links", "/links.aspx", null);
	menu.addItem("News and Musings", "News and Musings", "News and Musings", "http://willpurdy.blogspot.com", null);
	menu.addItem("ContactId", "Contact", "Contact", "mailto:will@willpurdy.com?subject=Contact", null);	
	menu.addSubItem("AboutId", "My Pipes", "My Pipes",  "/mypipes.aspx", "");
	menu.addSubItem("AboutId", "My History", "My History",  "/myhistory.aspx", "");
	menu.addSubItem("AboutId", "Grading & Pricing", "Grading & Pricing",  "/grading.aspx", "");
	menu.addSubItem("AboutId", "Philosophy", "Philosophy",  "/philosophy.aspx", "");
	menu.addSubItem("AboutId", "Reviews", "Reviews",  "/reviews.aspx", "");
	menu.addSubItem("AboutId", "The Workshop", "The Workshop",  "/myshop.aspx", "");

	
	menu.showMenu();
}
