//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("home", "Home", "Home Page",  "index.html", null);
	
	menu.addItem("blog", "Blog", "Blog",  "http://www.facebook.com/group.php?gid=94549935886&ref=ts", null);
	
	menu.addItem("horses", "Horses", "Horses",  null, null);
	menu.addSubItem("horses", "For Adoption", "For Adoption",  "foradoption.html", "");
	menu.addSubItem("horses", "Rescues", "Rescues",  "rescues.html", "");
	menu.addSubItem("horses", "Success Stories", "Success Stories",  "successes.html", "");
	menu.addSubItem("horses", "HEART Residents", "HEART Residents",  "residents.html", "");
	menu.addSubItem("horses", "In Memoriam", "In Memoriam",  "memoriam.html", "");
	
	menu.addItem("news", "News", "News",  null, null);
	menu.addSubItem("news", "News", "News",  "news.html", "");
	menu.addSubItem("news", "Events", "Events",  "events.html", "");
	menu.addSubItem("news", "Newsletters", "Newsletters",  "newsletters.html", "");
	
	
	menu.addItem("Forms", "Forms", "Forms",  "adoption_surrender.html",  null);
	
	menu.addItem("about heart", "About HEART", "About HEART",  "aboutheart.html", null);
	menu.addSubItem("about heart", "About HEART", "About HEART",  "aboutheart.html", "");
	menu.addSubItem("about heart", "Legal", "Legal",  "legal.html", "");
	menu.addSubItem("about heart", "Board", "Board",  "board.html", "");
	
	menu.addItem("store", "Store", "store",  "store.html", null);
	
	menu.addItem("education", "Education", "Education",  "education.html",  null, null);
	
	menu.addItem("contact", "Contact", "Contact",  null, null);
	menu.addSubItem("contact", "Contact", "Contact",  "contact.html", "");
	menu.addSubItem("contact", "Email", "Email",  "mailto: contact@heartoftucson.org?subject=HEART of Tucson inquiry");

	menu.showMenu();
}