//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("main", "Main Page", "Main Page",  "http://www.johnearlwalker.com/main.html", "");
        menu.addItem("audio", "Audio Clips", "Audio Clips", null, null);
        menu.addItem("videos", "Videos", "Videos", null, null);
	menu.addItem("photos", "Photos", "Photos", null, null );
	menu.addItem("appearances", "Appearances", "Appearances", null, null);
	menu.addItem("reviews", "Reviews", "Reviews",  "http://www.johnearlwalker.com/reviews.html", "");
        menu.addItem("plumnelly", "Plum Nelly", "Plum Nelly", "http://www.johnearlwalker.com/plumnelly.html", "");
        menu.addItem("earlsmusicshop", "Earls Music Shop", "Earls Music Shop",  "http://www.johnearlwalker.com/earlsmusicshop.html", "");
        menu.addItem("Guestbook", "Guestbook","Guestbook", "http://htmlgear.lycos.com/guest/control.guest?u=earlandtheguys&amp;i=1&amp;a=view", "");
        menu.addItem("links", "Links", "Links",  "http://www.johnearlwalker.com/links.html", "");
              
        menu.addSubItem("audio", "Song Samples", "Song Samples",  "http://www.johnearlwalker.com/sounds.html", "");
        menu.addSubItem("audio", "Radio Interviews", "Radio Interviews",  "http://www.johnearlwalker.com/radiointerviews.html", "");
        menu.addSubItem("audio", "Resurrected Recordings", "Resurrected Recordings",  "http://www.johnearlwalker.com/resurrectedrecordings.html", "");       
        menu.addSubItem("videos", "Video Collections", "Video Collections",  "http://www.johnearlwalker.com/video.html", "");
        menu.addSubItem("videos", "People Are Talkin'", "People Are Talkin",  "http://www.johnearlwalker.com/talkin.html", "");
        menu.addSubItem("videos", "Little Miss Perfect", "Little Miss Perfect",  "http://www.johnearlwalker.com/perfect.html", "");
        menu.addSubItem("videos", "I'm Leavin' You", "Im Leavin You",  "http://www.johnearlwalker.com/leavin.html", "");
        menu.addSubItem("photos", "The ROCKERS", "The ROCKERS photos",  "http://www.johnearlwalker.com/rockers/index.html", "");
        menu.addSubItem("photos", "PLUM NELLY", "PLUM NELLY photos",  "http://www.johnearlwalker.com/plumnelly/index.html", "");
	menu.addSubItem("appearances", "Current Schedule", "Current Schedule",  "http://www.johnearlwalker.com/appearances.html", "");
	menu.addSubItem("appearances", "KKCR w/ Michele Rundgren", "on KKCR Radio With Michele Rundgren",  "http://www.johnearlwalker.com/rundgren-kkcr.html", "");
        menu.addSubItem("appearances", "Aussie Walkabout Solo Tour", "The Earl In Australia",  "http://www.johnearlwalker.com/oz.html", "")
   
              menu.showMenu();
}