//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{

menu = new Menu();

//begin edit
//AddItem(id, text, hint, location, alternativeLocation);

menu.addItem(null,"Home","","index.html",null);
menu.addItem("specialistid","Specialists","",null,null);
menu.addItem("foodsid","Foods","",null,null);
menu.addItem("supplementid","Supplements","",null,null);
menu.addItem("bodycareid","BodyCare","",null,null);
menu.addItem("benefitsid","Benefits","","benefits/index.html",null);
menu.addItem("shoppingid","Shopping","",null,null);
menu.addItem("consultid","Consultancy","","consult/index.html",null);
menu.addItem("newsid","News","",null,null);
menu.addItem("recipesid","Recipes","","recipes/index.html",null);
menu.addItem("indexid","Index","","webindex.html",null);

//menu.addSubItem("specialistid","&nbsp;","","","");
menu.addSubItem("specialistid","About Us","","specialist/index.html","");
menu.addSubItem("specialistid","Mission & Vision","","specialist/mission.html","");
menu.addSubItem("specialistid","Brands & Products","","specialist/brands.html","");
menu.addSubItem("specialistid","Contact & Directory","","specialist/contact.html","");
menu.addSubItem("specialistid","&nbsp;","","","");

//menu.addSubItem("foodsid","&nbsp;","","","");
menu.addSubItem("foodsid","Products","","foods/index.html","");
menu.addSubItem("foodsid","Organic","","foods/organic/index.html","");
menu.addSubItem("foodsid","Vegetarian","","foods/vegetarian/index.html","");
menu.addSubItem("foodsid","Beverages","","foods/beverage/index.html","");
menu.addSubItem("foodsid","Teas","","foods/tea/index.html","");
menu.addSubItem("foodsid","&nbsp;","","","");

//menu.addSubItem("supplementid","&nbsp;","","","");
menu.addSubItem("supplementid","Lifestyle Support","","supplement/index.html","");
menu.addSubItem("supplementid","Men","","supplement/men/index.html","");
menu.addSubItem("supplementid","Women","","supplement/women/index.html","");
menu.addSubItem("supplementid","Children","","supplement/children/index.html","");
menu.addSubItem("supplementid","&nbsp;","","","");

//menu.addSubItem("bodycareid","&nbsp;","","","");
menu.addSubItem("bodycareid","Products","","bodycare/index.html","");
menu.addSubItem("bodycareid","Skin Nourisment","","bodycare/skin/index.html","");
menu.addSubItem("bodycareid","Massage & Spa","","bodycare/massage/index.html","");
menu.addSubItem("bodycareid","Ergonomic Aids","","bodycare/ergonomic/index.html","");
menu.addSubItem("bodycareid","&nbsp;","","","");

//menu.addSubItem("shoppingid","&nbsp;","","","");
menu.addSubItem("shoppingid","Retail","","shopping/index.html","");
menu.addSubItem("shoppingid","Whole Sale","","shopping/wholesale.html","");
menu.addSubItem("shoppingid","&nbsp;","","","");

//menu.addSubItem("newsid","&nbsp;","","","");
menu.addSubItem("newsid","What's New","","news/index.html","");
menu.addSubItem("newsid","Media","","news/media/index.html","");
menu.addSubItem("newsid","&nbsp;","","","");

//end edit

menu.showMenu();
}