//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",  "shop/", null);
//	menu.addItem("publishingid", "Publishing", "Publishing",  "publish.php", null);
//	menu.addItem("newsid", "News and Events", "News and Events",  "news.php", null);
	menu.addItem("productsid", "Products", "Products",  null, "shop/");
	menu.addItem("buyid", "Buy Online", "Buy Online",  null, "shop/");
	menu.addItem("servicesid", "Services", "Services",  null, "services.php");
	menu.addItem("searchid", "Search", "Search Our Site",  "shop/index.php?main_page=advanced_search", null);
	menu.addItem("contactid", "Contact us", "Contact us",  "contact/", null);
	menu.addItem("aboutid", "About us", "About us",  "about.php", null);
	menu.addItem("sitemapid", "Site Map", "Site Map",  "shop/index.php?main_page=site_map", null);

	menu.addSubItem("productsid", "Inside-Pictured Snuff-Bottles", "Inside-Pictured Crystal Snuff-Bottles",  "shop/index.php?main_page=index&cPath=3", "_self");
//	menu.addSubItem("productsid", "Tang-Tri-Color Ceramics", "Tang-Tri-Color Ceramics",  "pmenu/ttc/", "_self");
	menu.addSubItem("productsid", "Ceramics And Porcelains", "Ceramics And Porcelains",  "shop/index.php?main_page=index&cPath=2", "_self");
//	menu.addSubItem("productsid", "Imitation Ivory", "Imitation Ivory",  "pmenu/ii/ii.php", "_self");
	menu.addSubItem("productsid", "Chinese Antiques", "Chinese Antiques",  "shop/index.php?main_page=index&cPath=9", "_self");

	menu.addSubItem("buyid", "Terms of Sale", "Terms of Sale",  "buy/tos.php", "_self");
	menu.addSubItem("buyid", "Payment", "Payment",  "shop/index.php?main_page=payment", "_self");
	menu.addSubItem("buyid", "Shipping, Returns & Refund", "Shipping, Returns & Refund Policy",  "shop/index.php?main_page=shippinginfo", "_self");
	menu.addSubItem("buyid", "Warranty", "Warranty",  "shop/index.php?main_page=warranty", "_self");
	menu.addSubItem("buyid", "Packing and Shipping", "Packing and Shipping",  "shop/index.php?main_page=packaging", "_self");
	menu.addSubItem("buyid", "Exchange Rates", "Exchange Rates",  "buy/currency.php", "_blank");

	menu.addSubItem("servicesid", "Resellers", "Resellers",  "services/resellers/", "_self");

	menu.showMenu();
}