//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("menuid", "Main", "Main", null, null);
	menu.addItem("recipeid", "Home Brew Recipes", "Home Brew Recipes", null, null);
			
	menu.addSubItem("menuid", "Home", "Home", "http://www.brewinwithherb.com/", "");
	menu.addSubItem("menuid", "Beer Terms", "Beer Terms", "http://www.brewinwithherb.com/beerterms.html", "");
	menu.addSubItem("menuid", "Directnic", "directnic", "http://www.directnic.com/", "_blank");
	menu.addSubItem("menuid", "Webmail", "webmail", "https://webmail.dndchosting.com/horde/imp/login.php", "_blank");
	menu.addSubItem("menuid", "Other", "other", "http://family.brewinwithherb.com/", "_blank");	
			
	menu.addSubItem("recipeid", "Oktoberfest", "Oktoberfest", "http://www.brewinwithherb.com/oktoberfest.html", "");
	menu.addSubItem("recipeid", "Oatmeal Stout", "Oatmeal Stout", "http://www.brewinwithherb.com/oatmealstout.html", "");
	menu.addSubItem("recipeid", "English Pale Ale", "English Pale Ale", "http://www.brewinwithherb.com/englishpaleale.html", "");
	menu.addSubItem("recipeid", "Belgian Tripel", "Belgian Tripel", "http://www.brewinwithherb.com/recipes/tripel/Trippel.html", "");
	menu.addSubItem("recipeid", "October Fest #2", "October Fest", "http://www.brewinwithherb.com/recipes/octoberfest/October_Fest.html", "");
	menu.addSubItem("recipeid", "Adams Pilsner", "Adams Pilsner", "http://www.brewinwithherb.com/recipes/pilsner/01-13-2007_Adams_Pilsner.html", "");
		
	menu.showMenu();
}
