//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("benefits", "About Honey", "Honeys wonderful benefits",  null, null);
	menu.addItem("Carlislehoney", "Carlisle Honey", "Local & Natural",  null, null);
	menu.addItem("ordering", "Ordering", "How to order",  null, null);
	menu.addItem("facts", "Facts and Uses", "How & Where to use Honey",  null, null);
	menu.addItem("beeinfo", "Bee Info", "Miscellaneous",  null, null);
	menu.addItem("bkeep", "For the Beekeeper", "Beekeeper Links", null, null);

	menu.addSubItem("benefits", "Beekeepers Honey", "Benefits of Beekeepers Honey",  "raw-beekeeper-honey.htm", "_blank");
	menu.addSubItem("benefits", "Whats so good", "Whats so good about honey?",  "raw-honey-benefits.htm", "_blank");
	menu.addSubItem("benefits", "Raw, Liquid, Crystallized", "The difference between raw, liquid and crystallized honey",  "raw-honey.htm", "_blank");
	menu.addSubItem("benefits", "Honey, Health & Allergies", "By Tom Ogren",  "allergies.htm", "_blank");
	menu.addSubItem("benefits", "Raw Honey", "Raw Honey content analysis",  "rawhoneycontents.htm", "_blank");
	menu.addSubItem("benefits", "Darker Honey", "Deep Color and Rich Flavor from Purple Loosestrife",  "purpleloosestrife.htm", "_blank");
	menu.addSubItem("benefits", "Anti-Oxidant & Free_Radicals", "Honey fights Free-Radicals",  "free-radicals.htm", "_blank");
	menu.addSubItem("benefits", "Anti-Oxidant & Cholesterol", "Honey fights cholesterol",  "http://www.eurekalert.org/pub_releases/2002-08/acs-hfc080502.php", "_blank");


	menu.addSubItem("Carlislehoney", "Carlisle", "Carlisle, MA",  "carlisle.htm", "_blank");
	menu.addSubItem("Carlislehoney", "Bee Yard", "Our Bee Yard",  "beeyard/beeyard.htm", "_blank");
	menu.addSubItem("Carlislehoney", "Map", "Map of Carlisle, MA",  "map.htm", "_blank");
		
	menu.addSubItem("ordering", "Pick Up", "Pickup in Carlisle",  "map.htm", "_blank");

	menu.addSubItem("facts", "Great honey information", "Information about honey",  "http://www.honey.com/nhb/about-honey/", "_blank");
	menu.addSubItem("facts", "Honey Recipes", "Honey Recipes and cooking with honey",  "http://www.honey.com/nhb/recipes/", "_blank");
	menu.addSubItem("facts", "Learn more about Bee Pollen", "beepollen.nutritional-supplements-directory.com",  "http://www.beepollen.nutritional-supplements-directory.com", "_blank");

	menu.addSubItem("beeinfo", "Tales from the Hive", "PBS.org NOVA Tales from the Hive",  "http://www.pbs.org/wgbh/nova/bees/", "_blank");
	menu.addSubItem("beeinfo", "Start Beekeeping", "Want to start Beekeeping, try this",  "http://www.gobeekeeping.com/", "_blank");
	menu.addSubItem("beeinfo", "Honey e-Cards", "National Honey Month", "http://www.123greetings.com/events/national_honey_month/", "_blank");

	menu.addSubItem("bkeep", "WebBeePop", "Colony mathematical population simulator", "http://gears.tucson.ars.ag.gov/beepop/index.html", "_blank");
	menu.addSubItem("bkeep", "Local Bee Club", "MCBA",  "http://www.middlesexbeekeepers.org", "_blank");

	menu.showMenu();
}