//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("homeid", "Home", "Home",  "index.html", null);
	menu.addItem("kobusid", "Kobus Möller", "Kobus Möller", null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);
	menu.addItem("merchandiseid", "Merchandise", "Merchandise",  null, null);
	menu.addItem("calendarid", "Calendars", "Calendars",  "calendars.html", null);
	menu.addItem("contactid", "Contact", "Contact",  "contact.html", null);

	menu.addSubItem("kobusid", "Biography", "Biography",  "biography.html", "");
	menu.addSubItem("kobusid", "Exploring Creation", "Exploring Creation",  "exploring.html", "");
	menu.addSubItem("kobusid", "Technique", "Technique",  "technique.html", "");
	menu.addSubItem("kobusid", "Research", "Research",  "research.html", "");
	menu.addSubItem("kobusid", "Diary", "Diary",  "diary.html", "");

	menu.addSubItem("galleryid", "Originals", "Originals",  "originals01.html", "");
	menu.addSubItem("galleryid", "Origiclees", "Origiclees",  "origiclees01.html", "");

	menu.addSubItem("merchandiseid", "Originals", "Originals",  "orig.html", "");
	menu.addSubItem("merchandiseid", "Origiclees", "Origiclees",  "origiclees.html", "");
	menu.addSubItem("merchandiseid", "Giclee Prints", "Giclee Prints",  "giclees.html", "");
	menu.addSubItem("merchandiseid", "Lithographic Prints", "Lithographic Prints",  "lithographic.html", "");
	menu.addSubItem("merchandiseid", "Cards", "Cards", "cards.html", "");
	menu.addSubItem("merchandiseid", "Commissions", "Commissions", "commissions.html", "");
	menu.addSubItem("merchandiseid", "______________", "______________", "agreements.html", "");
	menu.addSubItem("merchandiseid", "Trade Agreements", "Trade Agreements", "agreements.html", "");
	menu.addSubItem("merchandiseid", "Currency Converter", "Currency Converter", "http://www.xe.com", "new");

	menu.showMenu();
}