//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("homeid", "Home", "Go Home, Man!",  null, null);
	menu.addItem("newsid", "Latest News", "The Latest Happenings",  null, null);
	menu.addItem("storeid", "Online Store", "Order Everything Pete",  null, null);
	menu.addItem("bioid", "Pete's Bio", "Let us tell you a story",  null, null);
	menu.addItem("mediaid", "Multimedia", "Hear, See, Experience...",  null, null);
	menu.addItem("interactid", "Interact", "Messageboard, Email, etc",  null, null);
	
	

    menu.addSubItem("homeid", "Return to the Home Page", "Go Home!",  "http://www.peteway.net/main.html", "");
	menu.addSubItem("newsid", "Latest News", "What's Up",  "http://www.peteway.net/news.html", "");
	menu.addSubItem("newsid", "Concert Dates", "See Pete Live",  "http://www.peteway.net/shows.html", "");
	menu.addSubItem("newsid", "Download Newsletter", "Better Than CNN!",  "http://www.peteway.net/newsletter.html", "");
	
	menu.addSubItem("storeid", "Order Cds", "Buy Pete's Music",  "http://www.peteway.net/store.html", "");
	menu.addSubItem("storeid", "Order Merch", "Shirts, etc.",  "http://www.peteway.net/store.html", "");
	
	menu.addSubItem("bioid", "Pete's Bio", "Too Much To Remember!",  "http://www.peteway.net/bio.html", "");
	menu.addSubItem("bioid", "Timeline", "From then till now",  "http://www.peteway.net/timeline.html", "");
	menu.addSubItem("bioid", "Family Tree", "Those Pete has jammed with!",  "http://www.peteway.net/familytree.html", "");
	
	menu.addSubItem("mediaid", "Audio Discography", "Tons Of Information on everything Pete has recorded!",  "http://www.peteway.net/discography.html", "");
	menu.addSubItem("mediaid", "Rare Audio Archive", "Unreleased Stuff",  "http://www.peteway.net/rareaudio.html", "");
	menu.addSubItem("mediaid", "Recent Photos", "Recent Concert Photos",  "http://www.peteway.net/recentimages.html", "");
	menu.addSubItem("mediaid", "Photo Archive", "30 Years of Photos",  "http://www.peteway.net/imagearchive.html", "");
	menu.addSubItem("mediaid", "Video", "Watch Pete Jam!",  "http://www.peteway.net/video.html", "");
	menu.addSubItem("mediaid", "Interviews", "Hear Pete Speak!",  "http://www.peteway.net/interviews.html", "");
	menu.addSubItem("mediaid", "UFO Streaming Radio", "Listen 24 hours a day!!",  "http://www.live365.com/stations/275037", "");

	menu.addSubItem("interactid", "Message Board", "Interact With Fans",  "http://pub50.ezboard.com/bpetewaymessageboard", "");
	menu.addSubItem("interactid", "Ask Pete", "Ask Pete A Question",  "http://www.peteway.net/askpete.html", "");
	menu.addSubItem("interactid", "Sign GuestMap", "More Than a Guestbook!",  "http://pub20.bravenet.com/guestmap/show.php?usernum=1717332401&lightmap=0&icons=0&&entrylist=0&zoom=0&welcome=1','bnetguestmap','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=720,height=470,top=110,left=110", "");
	menu.addSubItem("interactid", "Join Mailing List", "Receive Email Updates",  "http://www.peteway.net/signup.html", "");
	menu.addSubItem("interactid", "Booking", "Booking Agent",  "http://www.peteway.net/booking.html", "");
	menu.addSubItem("interactid", "Futbol Per Pete", "Pete chats about Soccer",  "http://www.peteway.net/futbol.html", "");
	menu.addSubItem("interactid", "Family & Friends", "Links to those we love",  "http://www.peteway.net/family.html", "");
	menu.addSubItem("interactid", "Submit Item", "Submit photos, etc. for use on this site",  "http://www.peteway.net/submit.html", "");
    menu.addSubItem("interactid", "Email Frank Powers - Pete's Manager", "Hi Frank!",  "mailto:frank@peteway.net", "");
    menu.addSubItem("interactid", "Email Webmaster", "Joe Kleon",  "mailto:webmaster@peteway.net", "");
	
	


	
	

	menu.showMenu();
}