//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("shoppingid", "Stores", "Stores",  null, null);
	menu.addItem("roastdid", "Roasted Coffee", "Roasted Coffee",  null, null);
	menu.addItem("greenid", "Green Coffee Beans", "Green Coffee Beans",  null, null);
	menu.addItem("equipid", "Manufacturers", "Coffee Equipment Manufacturers",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "http://ourcoffeebarn.com", "");
	menu.addSubItem("webmasterid", "Contact Us", "Contact Us",  "/estore/contact_us.php", "");
	menu.addSubItem("webmasterid", "About Us", "About Us",  "http://ourcoffeebarn.com/about_us1.htm", "");
	menu.addSubItem("webmasterid", "About Our Coffee", "About Our Coffee",  "http://ourcoffeebarn.com/fresh_roasted.htm", "");
	menu.addSubItem("webmasterid", "Home Roasting Tips", "Home Coffee Roasting Tips",  "http://ourcoffeebarn.com/home_roasting_tips.htm", "");
	menu.addSubItem("webmasterid", "News", "Coffee Related News Feed",  "http://ourcoffeebarn.com/News.html", "");
	menu.addSubItem("webmasterid", "Links", "Visit some of these links!",  "http://ourcoffeebarn.com/links.htm", "");
	menu.addSubItem("webmasterid", "E-Mail Lists", "Subscribe or UnSubscribe to our Email Newsletter!",  "http://ourcoffeebarn.com/list/?p=subscribe&id=2", "");

	menu.addSubItem("shoppingid", "Retail Store", "Retail Store",  "/estore/", "");
	menu.addSubItem("shoppingid", "Wholesale Store", "Wholesale Store",  "/wholesale/", "");
	menu.addSubItem("shoppingid", "Domain Names", "Buy your Domain Name from us!",  "https://www.securepaynet.net/gdshop/rhp/default.asp?prog_id=308021", "");
	menu.addSubItem("shoppingid", "Internet Merchant Accounts", "Accept On Line payments with a merchant account and an E-onlinedata account. This who we use.",  "https://www.e-onlinedata.com/ourcoffeebarnretail", "");	
	

	menu.addSubItem("roastdid", "Retail Roasted", "1 and 5 pound sized bags for our Retail Customers",  "/estore/index.php?cPath=21", "");
	menu.addSubItem("roastdid", "Wholesale Roasted", "Wholesale Fresh Roasted Coffee for anyone who wants to buy 10 pounds or more of roasted coffee.",  "http://ourcoffeebarn.com/wholesale/index.php?cPath=1_19", "");

	
	menu.addSubItem("greenid", "Green Coffee Beans", "A little Info about Our Green Coffee Beans",  "/Green_Coffee_Beans.html", "");
	menu.addSubItem("greenid", "1 pound", "1 pound bags of specialty grade green coffee beans",  "http://ourcoffeebarn.com/estore/index.php?cPath=22_32", "");
	menu.addSubItem("greenid", "5 pound", "5 pound bags of specialty grade green coffee beans",  "http://ourcoffeebarn.com/estore/index.php?cPath=22_33", "");
	menu.addSubItem("greenid", "10 pound", "10 pound bags of specialty grade green coffee beans", "http://ourcoffeebarn.com/estore/index.php?cPath=22_34", "");
	menu.addSubItem("greenid", "25 pound", "25 pound bags of specialty grade green coffee beans",  "http://ourcoffeebarn.com/wholesale/index.php?cPath=3_4", "");

	menu.addSubItem("equipid", "Bialetti", "Bialetti",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=17", "");
	menu.addSubItem("equipid", "Bunn", "Bunn",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=12", "");
	menu.addSubItem("equipid", "Chemex", "Chemex",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=6", "");
	menu.addSubItem("equipid", "Espro", "Espro",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=9", "");
	menu.addSubItem("equipid", "Hottop", "Hottop Coffee Roaster",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=18", "");
	menu.addSubItem("equipid", "La Pavoni", "La Pavoni Espresso Machine",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=13", "");
	menu.addSubItem("equipid", "Pasquini", "Pasquini",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=8", "");
	menu.addSubItem("equipid", "Rancilio", "Rancilio",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=10", "");
	menu.addSubItem("equipid", "Saeco", "Saeco",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=5", "");
	menu.addSubItem("equipid", "Solis", "Solis",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=1", "");
	menu.addSubItem("equipid", "Urnex", "Urnex",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=19", "");
	menu.addSubItem("equipid", "Velox", "Velox",  "http://ourcoffeebarn.com/estore/index.php?manufacturers_id=20", "");



	menu.showMenu();
}