//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",  "index.html", "");
	menu.addItem("larry", "Larry", "Larry",  null, null);
	menu.addItem("fans", "Fans", "Fans",  null, null);
	menu.addItem("fanlistings", "Fanlistings", "Fanlistings",  null, null);
	menu.addItem("contact", "Contact", "Contact",  null, null);




	menu.addSubItem("larry", "Biography", "Biography",  "biography.html", "");
	menu.addSubItem("larry", "Appearances", "Appearances",  "appearances.html", "");
	menu.addSubItem("larry", "Indy News", "Indy News",  "news.html", "");
	menu.addSubItem("larry", "Indy Pictures", "Pictures",  "pictures.html", "");
	menu.addSubItem("larry", "Indy Audio", "Audio",  "audio.html", "");
	menu.addSubItem("larry", "Links", "Links",  "links.html", "");
	menu.addSubItem("larry", "NASCAR", "NASCAR",  "http://www.geocities.com/larryfoytfanclub", "fanclub");

	

	menu.addSubItem("fans", "Fan Experiences", "Fan Experiences",  "meeting.html", "");
	menu.addSubItem("fans", "Fanfiction", "Fanfiction",  "fanfiction.html", "");
	menu.addSubItem("fans", "Forum", "Forum",  "http://www.mikeypower.com/forum", "forum");
	menu.addSubItem("fans", "Fan Club", "Fan Club",  "http://www.geocities.com/larryfoytfanclub", "fanclub");
	
	menu.addSubItem("fanlistings", "Larry Foyt", "Larry Foyt Fan Listing",  "http://www.geocities.com/larryfoytfanlisting", "fanlisting");
	menu.addSubItem("fanlistings", "A.J. Foyt", "A.J. Foyt Fan Listing",  "http://www.mikeypower.com/foyt", "ajfanlisting");
	menu.addSubItem("fanlistings", "A.J. Foyt IV", "A.J. Foyt IV Fan Listing",  "http://www.mikeypower.com/anthonyfoyt", "ajivfanlisting");	
	
	menu.addSubItem("contact", "Guest Log", "Guest Log",  "guestlog.html", "");
        menu.addSubItem("contact", "Email Webmaster", "Email Webmaster", "mailto:dearjoan@mikeypower.com", "");

	menu.showMenu();
}
