//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "Crew", "Crew",  null, null);
	menu.addItem("freedownloadid", "Graphics", "Graphics",  null, null);
	menu.addItem("searchengineid", "Site", "Site",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home", "content.html", "main");
	

	menu.addSubItem("newsid", "Jessic's Bio", "Jessica's Bio",  "jessbio.html", "main");
	menu.addSubItem("newsid", "Katie's Bio", "Katie's Bio",  "katbio.html", "main");
	menu.addSubItem("newsid", "Jessica's Journal", "Jessica's Journal",  "http://www.msnbc.com", "");
	menu.addSubItem("newsid", "Katie's Journal", "Katie's Journal",  "http://www.cbsnews.com", "");
	menu.addSubItem("newsid", "Crew Site's", "Crew Site's",  "crewsites.html", "main");

	menu.addSubItem("freedownloadid", "Jessica's Wallpapers", "Jessica's Wallpapers",  "jswallpapers.html", "main");
	menu.addSubItem("freedownloadid", "Katie's Wallpapers", "Katie's Wallpapers",  "kswallpapers.html", "main");
	menu.addSubItem("freedownloadid", "Guest Wallpapers", "Guest Wallpapers",  "otherwallpapers.html", "main");

	menu.addSubItem("searchengineid", "Link Us", "Link Us",  "linkus.html", "main");
	menu.addSubItem("searchengineid", "Guest Book", "Guest Book",  "http://pub38.bravenet.com/guestbook/3203612569", "_blank");
	menu.addSubItem("searchengineid", "Past Layouts", "Past Layouts",  "http://www.yahoo.com/", "main");
	
	
	menu.addSubItem("miscid", "Credits", "Credits",  "credits.html", "main");
	menu.addSubItem("miscid", "Links", "Links",  "links.html", "main");
	menu.addSubItem("miscid", "E-mail", "e-mail",  "mailto:horngods@musician.org", "");
	
	menu.showMenu();
}
