function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Familyid", "Family", "Take youre pick.",  null, null);
	menu.addItem("Picturesid", "Picture Gallery", "Smile",  null, null);
	menu.addItem("Linksid", "Favorite Links", "Check out my brothers site!",  null, null);
        menu.addItem("Funid", "Fun", "Fun things & Downloads",  null, null)
        menu.addItem("Contactid", "Contact Us", "Let us know what you think.",  null, null);
        
       menu.addSubItem("Familyid", "Adam Kuscher", "Adam here",  "../family/adam/adam.html");
	  menu.addSubItem("Familyid", "Dave Kuscher", "I hope you like my site.",  "../family/dave/dave.html");
	  menu.addSubItem("Familyid", "Dawn Kuscher", "Hi",  "../family/dawn/dawn.html");
        menu.addSubItem("Familyid", "Jason Hall", "Tank is my nickname",  "../family/jason/jason.html");
        menu.addSubItem("Familyid", "Jeremy Hall", "ChILL OUT!!!",  "../family/jeremy/jeremy.html");
        menu.addSubItem("Familyid", "Mandy Kuscher", "Cool",  "../family/mandy/mandy.html");
        menu.addSubItem("Familyid", "Dachshounds", "Woff Woff!!",  "../family/dachshounds/dachshounds.html");
	  menu.addSubItem("Familyid", "Pam Kuscher", "Have fun!!",  "../family/pam/pam.html");
        menu.addSubItem("Familyid", "Samantha Kuscher", "Enjoy",  "../family/samantha/samantha.html");
	  
	menu.addSubItem("Picturesid", "Adam's", "Under Construction",  "../pictures/adam/index.html");
        menu.addSubItem("Picturesid", "Dave's Travel", "Places I have been",  "../pictures/travel/index.html");
        menu.addSubItem("Picturesid", "Dave's Truck", "Here are the trucks I have owned.",  "../pictures/truck/index.html");
        menu.addSubItem("Picturesid", "Dawn's", "",  "../pictures/dawn/index.html")
        menu.addSubItem("Picturesid", "Jason's", "Under Construction",  "../pictures/jason/index.html");
        menu.addSubItem("Picturesid", "Jeremy's", "Under Construction",  "../pictures/jeremy/index.html");
        menu.addSubItem("Picturesid", "Lake Hopatcong", "",  "../pictures/lake/index.html");
        menu.addSubItem("Picturesid", "Pam's", "",  "../pictures/pam/index.html");
	menu.addSubItem("Picturesid", "Mandy's", "",  "../pictures/mandy/index.html");
        menu.addSubItem("Picturesid", "Dachshounds", "Our Dogs",  "../pictures/dogs/index.html");
        menu.addSubItem("Picturesid", "Samantha's", "",  "../pictures/samantha/index.html");
        menu.addSubItem("Picturesid", "The Family", "",  "../pictures/family/index.html");

        

        menu.addSubItem("Linksid", "Ken Kuscher", "My brothers site.",  "../ken/index.html");
        menu.addSubItem("Linksid", "Fred Greene", "My friends site.",  "http://www.fredgreene.net");
        menu.addSubItem("Linksid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/");
	menu.addSubItem("Linksid", "Website Abstraction", "Website Abstraction",  "http://www.wsabstract.com/");
	menu.addSubItem("Linksid", "Web Review", "Web Review",  "http://www.webreview.com/");
	menu.addSubItem("Linksid", "Developer.com", "Developer.com",  "http://www.developer.com/");
	menu.addSubItem("Linksid", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/");
	menu.addSubItem("Linksid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/");
	menu.addSubItem("Linksid", "ebay", "The best auction site!!!",  "http://www.ebay.com/");
	menu.addSubItem("Linksid", "PriceWatch", "The best computer shopping for computers & parts.",  "http://www.pricewatch.com");
      menu.addSubItem("Linksid", "Adrenaline Game Vault", "The best place to find trainers and cracks",  "http://www.avault.com/");
	menu.addSubItem("Linksid", "Rush's Station List", "The best auction site!!!",  "http://www.gvn.net/~creative/rush/radio.htm");

        
	menu.addSubItem("Funid", "Cartoon of the day.", "Have fun!!",  "../fun/fun.html");
        

        menu.addSubItem("Contactid", "Dave's E-Mail", "Hi",  "mailto:dave@kuscher.com");
        menu.addSubItem("Contactid", "Pam's E-Mail", "Hope to here from you.",  "mailto:pam@kuscher.com");
	menu.addSubItem("Contactid", "Dawn's E-Mail", "Send me something.",  "mailto:dawn@kuscher.com");
        menu.addSubItem("Contactid", "Mandy's E-Mail", "Cool",  "mailto:mandrith@cs.com");
        menu.addSubItem("Contactid", "Samantha's E-Mail", "Hi",  "mailto:azrielle@kuscher.com");
        menu.addSubItem("Contactid", "Feedback", "Youre Comments Please.",  "../feedback/feedback.html");
        menu.addSubItem("Contactid", "Guestbook", "Don't forget to sign it.","http://pub2.bravenet.com/guestbook/show.php?usernum=142430996&cpv=1");
       


        menu.showMenu();


	


	
	
	

	
}