function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
        menu.addItem("Homeid", "Home", "Home Page",   null, null);
	menu.addItem("perranid", "Perran's Info", "Info about Perran",  null, null);
        menu.addItem("musicid", "Perran's Music", "The music Perran makes",  null, null);
        menu.addItem("bandid", "Perran's Bands", "Band and member info",  null, null);
        menu.addItem("instructid", "Music Instruction", "Study Music",  null, null);
        menu.addItem("gearid", "Perran's Gear", "The equipment Perran uses",  null, null);
	menu.addItem("businessid", "I.T. Business", "Business info",  null, null);
	menu.addItem("galleryid", "Gallery", "Exhibit of various Perran creations",  null, null);
	menu.addItem("linksid", "Links", "Links that Perran reccomends",  null, null);
        menu.addItem("contactid", "Contact Information", "Contact Perran",  null, null);
        
        
        
        

        menu.addSubItem("Homeid", "Home", "Home Page",  "index1.shtml"); 
     

        menu.addSubItem("perranid", "Perran's Bio", "Info about Perran",  "bio.htm");
	menu.addSubItem("perranid", "Perran's News", "News and Information",  "news.htm");
        menu.addSubItem("perranid", "Perran's Mission", "The mission Perran is on",  "mission.htm");
        

	menu.addSubItem("bandid", "Perran's Musician Search", "Member Search info",  "band_search.htm");
	menu.addSubItem("bandid", "Perran's Bands", "Band and Member info",  "band.htm");

        
	menu.addSubItem("musicid", "Perran's Music", "Music and info",  "music.htm");
	menu.addSubItem("musicid", "Perran's Availibility", "Perran for Hire",  "availible.htm");
        menu.addSubItem("musicid", "Perran: Producer/Engineer", "Production and Engineering",  "producing.htm");
        menu.addSubItem("musicid", "Perran's Music Experience", "Perran's Music Experience",  "experience.htm");
        menu.addSubItem("musicid", "Perran's Influences", "Influences and current listening",  "influences.htm");
	menu.addSubItem("musicid", "Perran's Recording Facility", "Recording",  "recording.htm");
	

        
        menu.addSubItem("instructid", "Music Instruction Overview", "General Information",  "instruct.htm");
        menu.addSubItem("instructid", "Areas of Study", "The way Perran teaches music",  "instruct2.htm");
        menu.addSubItem("instructid", "Perran's Teaching Policies", "Important Information",  "instruct3.htm");


        menu.addSubItem("gearid", "Perran's Gear Overview", "The gear Perran uses to make music",  "gear.htm");
        menu.addSubItem("gearid", "Perran's Gear Wants", "The gear Perran is looking for",  "gear_wants.htm");
        menu.addSubItem("gearid", "Perran's Guitars", "The guitars that Perran uses",  "guitars.htm");
        menu.addSubItem("gearid", "Perran's Amplifiers", "The amps that Perran uses",  "amps.htm");
        menu.addSubItem("gearid", "Perran's Recording Facility", "Recording",  "recording.htm");





	menu.addSubItem("businessid", "Perran's I.T. Business", "Business info",  "business.htm");
        menu.addSubItem("businessid", "Perran's I.T. Consulting", "Consulting info",  "consulting.htm");
        menu.addSubItem("businessid", "Perran's Web Development", "Web Development info",  "webdev.htm");
	        



	





        menu.addSubItem("galleryid", "Perran's Music Gallery", "Music written produced, performed and recorded by Perran",              "gallery_music.htm");
	menu.addSubItem("galleryid", "Perran's Graphics Gallery", "Exhibit of visuals that Perran created",           "gallery_graphics.htm");
                           
        menu.addSubItem("galleryid", "Music Download Instructions", "Help with downloading music",            "gallery_music_help.htm");        
        









	
	
	

        
	menu.addSubItem("linksid", "Computer Links", "Computer Resources",  "computer_links.htm");
        menu.addSubItem("linksid", "Music Links", "Music Links",  "music_links.htm");
        menu.addSubItem("linksid", "General Links", "Kewl Links",  "general_links.htm");



        menu.addSubItem("contactid", "Contact Perran", "Contact Info",  "contact.htm");
	




        








	menu.showMenu();
}