//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("mepageid", "Me Pages", "Me Pages",  null, null);
	menu.addItem("racingid", "Racing", "Racing",  null, null);
	menu.addItem("foodgardenid", "Food & Garden", "Food & Garden",  null, null);
	menu.addItem("pixelartid", "Pixel Realm", "Pixel Realm",  null, null);
        menu.addItem("poetryid", "My Poetry & Books", "My Poetry & Books",  null, null);
        menu.addItem("miscid", "Misc", "Misc",  null, null);
        menu.addItem("guestbookid", "Guestbook", "Guestbook",  null, null);
        menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "http://www.kabsyn.com/", "");

	menu.addSubItem("mepageid", "Our Pets", "Our Pets", "http://www.kabsyn.com/mypets.html", "");
	menu.addSubItem("mepageid", "Soulmates", "Soulmates", "http://www.kabsyn.com/Kabala_Syndar.html", "");

	menu.addSubItem("racingid", "Our R/C Car Racing", "Our R/C Car Racing", "http://www.kabsyn.com/rc_cars.html", "");

	menu.addSubItem("foodgardenid", "Syndar's Recipes", "Syndar's Recipes", "http://www.kabsyn.com/favoriterecipes.html", "");
	menu.addSubItem("foodgardenid", "Pond & Garden", "Pond & Garden", "http://www.kabsyn.com/back_yard_fun.html", "");
	menu.addSubItem("foodgardenid", "Hoya Plants", "Hoya Plants", "http://www.kabsyn.com/hoyas.html", "");

	menu.addSubItem("pixelartid", "Pixel Realm", "Pixel Realm", "http://www.kabsyn.com/pixel_realm.html", "");

	menu.addSubItem("poetryid", "Poems by Joni Jovani", "Poems by Joni Jovani", "http://www.kabsyn.com/Poems_by_Joni_Jovani.html", "");
	menu.addSubItem("poetryid", "Children of The Sun", "Children of The Sun", "http://www.kabsyn.com/Children_Of_The_Sun.html", "");

	menu.addSubItem("miscid", "Cool Animals", "Cool Animals", "http://www.kabsyn.com/Cool_Animals.html", "");
	menu.addSubItem("miscid", "Learning HTML", "Learning HTML", "http://www.kabsyn.com/LEARNING_HTML.html", "");
	menu.addSubItem("miscid", "The Unknown", "The Unknown", "http://www.kabsyn.com/The_Unknown.html", "");
	menu.addSubItem("miscid", "Mythology", "Mythology",  "http://www.kabsyn.com/Mythology.html", "");
	menu.addSubItem("miscid", "A Fun Test", "A Fun Test", "http://www.kabsyn.com/Psychology_Test.html", "");

	menu.addSubItem("guestbookid", "View", "View", "http://pub48.bravenet.com/guestbook/4102726024", "");
	menu.addSubItem("guestbookid", "Sign", "Sign",
"http://pub48.bravenet.com/guestbook/4102726024", "");

	menu.addSubItem("linksid", "Home", "Realm of Possibilites", "http://www.kabsyn.com", "");
	menu.addSubItem("linksid", "Jitterbug Realm", "Jitterbug Realm", "http://www.geocities.com/terpsikhore3/index.html", "");
	menu.addSubItem("linksid", "Sun Jester", "Sun Jesters Slightly Sunny space", "http://www.geocities.com/Area51/Stargate/7090/", "");

	menu.showMenu();
}