//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(null,"Home","","default.html",null);
menu.addItem("coffeeid","Coffee","",null,null);
menu.addItem("teaid","Tea","",null,null);
menu.addItem("seasonid","Seasonings","",null,null);
menu.addItem("truffleid","Rum Truffles","",null,null);
menu.addItem("orderid","Order On-line","",null,null);
menu.addItem("aboutid","About Us","","about.html",null);
menu.addItem("contactid","Contact","","contact.html",null);

menu.addSubItem("coffeeid","Coffee Flavors","","coffee/back.html","");
menu.addSubItem("coffeeid","Coffee Beans","","coffee/beans.html","");
menu.addSubItem("coffeeid","Coconut","","coffee/coconut.html","");
menu.addSubItem("coffeeid","Ground","","coffee/ground.html","");
menu.addSubItem("coffeeid","Mocha","","coffee/mocha.html","");
menu.addSubItem("coffeeid","Vanilla","","coffee/vanilla.html","");
menu.addSubItem("coffeeid","Sampler","","coffee/sampler.html","");

menu.addSubItem("teaid","Tea Flavours","","tea/back.html","");
menu.addSubItem("teaid","Breakfast","","tea/breakfast.html","");
menu.addSubItem("teaid","Coconut","","tea/coconut.html","");
menu.addSubItem("teaid","Mango","","tea/mango.html","");
menu.addSubItem("teaid","Passion","","tea/passion.html","");
menu.addSubItem("teaid","Sampler","","tea/sampler.html","");

menu.addSubItem("seasonid","Spice Islands","","season/back.html","");
menu.addSubItem("seasonid","Calypso Chicken","","season/chicken.html","");
menu.addSubItem("seasonid","Coconut Curry","","season/coconut.html","");
menu.addSubItem("seasonid","Jamaican Jerk","","season/jerk.html","");

menu.addSubItem("truffleid","Rum'N'Chocolate","","truffle/back.html","");
menu.addSubItem("truffleid","Chocolate","","truffle/chocolate.html","");
menu.addSubItem("truffleid","Coconut","","truffle/coconut.html","");
menu.addSubItem("truffleid","Coffee","","truffle/coffee.html","");
menu.addSubItem("truffleid","Pina Colada","","truffle/pinacolada.html","");

menu.addSubItem("orderid","Retail Minimum $50","","retail/default.html","");
menu.addSubItem("orderid","Wholesale Minimum $180","","wholesale/default.html","");

menu.showMenu();
}