//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("siteinfo", "site info", "site info",  null, null);
	menu.addItem("suites", "web suites", "web suites",  null, null);
	menu.addItem("goodies", "other goodies", "other goodies",  null, null);
	menu.addItem("resources", "resources", "resources",  null, null);

	menu.addSubItem("siteinfo", "home", "home",  "index.html");
	menu.addSubItem("siteinfo", "eccentrically mine", "eccentrically mine",  "http://www.eccentricallymine.com/");
	menu.addSubItem("siteinfo", "terms of use", "terms of use",  "../terms.html");
	menu.addSubItem("siteinfo", "email artist", "email me",  "mailto:sdg@eccentricallymine.com");
	menu.addSubItem("siteinfo", "artist permission", "artist permission",  "permission.htm");

	menu.addSubItem("suites", "full sets", "full sets",  "suiteindex.html");

	menu.addSubItem("goodies", "tubes", "tubes",  "tubes1.html");
	menu.addSubItem("goodies", "tiles", "tiles",  "tiles1.html");
	menu.addSubItem("goodies", "super bladepro", "super bladepro",  "sbppresets.html");
	menu.addSubItem("goodies", "sig tag tutorial", "sig tag tutorial",  "sigtut1.html");

	menu.addSubItem("resources", "web site tips", "tons of info",  "http://www.websitetips.com");
	menu.addSubItem("resources", "dynamic drive", "lots of scripts to use",  "http://www.dynamicdrive.com");
	menu.addSubItem("resources", "aletia hosting", "need a host?",  "http://www.aletiahosting.com");

	menu.showMenu();
}
