function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("UKSafari", "Tim's UK Safari (Diary)", "Details on my Trip to the UK",  null, null);
	menu.addItem("goals", "My UK Goals", "Things I wan't to do in the UK",  null, null);
	menu.addItem("castandcrewid", "Cast & Crew", "Friends and Villians",  null, null);
	menu.addItem("photos", "My Photo Gallary", "Pictures of people and places",  null, null);
	menu.addItem("misc", "Misc", "Stuff that doesnt fit",  null, null);
	menu.addItem("links", "Links", "Links to other pages",  null, null);
	menu.addItem("mainpage", "Homepage Navigation",  "Navigate Around My Page", null, null);

        menu.addSubItem("UKSafari", "May 2000", "Diary Entries from May 2000",  "/oldsafari/2000/05/");
        menu.addSubItem("UKSafari", "June 2000", "Diary Entries from June 2000",  "/oldsafari/2000/06/");
        menu.addSubItem("UKSafari", "July 2000", "Diary Entries from July 2000",  "/oldsafari/2000/07/");
        menu.addSubItem("UKSafari", "January 2001", "Diary Entries from January 2001",  "/oldsafari/2001/01/");
        menu.addSubItem("UKSafari", "March 2001", "Diary Entries from March 2001",  "/oldsafari/2001/03/");
        menu.addSubItem("UKSafari", "April 2001", "Diary Entries from April 2001",  "/oldsafari/2001/04/");
        menu.addSubItem("UKSafari", "May 2001", "Diary Entries from May 2001",  "/oldsafari/2001/05/");
        menu.addSubItem("UKSafari", "June 2001", "Diary Entries from June 2001",  "/oldsafari/2001/06/");
//	menu.addSubItem("UKSafari", "May 2000", "Diary Entries from May 2000",  "/may2000.html");
//	menu.addSubItem("UKSafari", "June 2000", "Diary Entries from June 2000",  "/june2000.html");
//	menu.addSubItem("UKSafari", "July 2000", "Diary Entries from July 2000",  "/july2000.html");
//	menu.addSubItem("UKSafari", "January 2001", "Diary Entries from January 2001",  "/january2001.html");
//	menu.addSubItem("UKSafari", "March 2001", "Diary Entries from March 2001",  "/march2001.html");
//	menu.addSubItem("UKSafari", "May 2001", "Diary Entries from May 2001",  "/may2001.html");

//	menu.addSubItem("misc", "A very funny joke", "A joke that was emailed to me",  "/joke.htm");
    menu.addSubItem("mainpage", "My Weekly Web Blog", "Updated Weekly with all the news", "/safariupdate/");
    menu.addSubItem("mainpage", "Return to Main Page", "Back to the beginning",  "/index.html");
    menu.addSubItem("mainpage", "My Guestbook", "Fill in an entry",  "/guestbook2/index.php");
//        menu.addSubItem("mainpage", "My Message Board", "Talk amoungst yourselves",  "WWWBoard/wwwboard.html");
	
        //menu.addSubItem("links", "Urban Irrigation", "My younger brothers website",  "http://www.urbanirrigation.com.au");
        menu.addSubItem("links", "Urban Legend Online", "My brothers film",  "http://www.sonypictures.com/movies/urbanlegend/");
        menu.addSubItem("links", "Valentine - Official Web Page", "My brothers film",  "http://www.valentinemovie.com");
 	menu.addSubItem("links", "Phonevision Australia", "My Dads company",  "http://www.phonevision.com.au");
 	menu.addSubItem("links", "Westpac Online", "Online Banking for Bank of Melbourne",  "https://olb.westpac.com.au/default.asp");
        menu.addSubItem("links", "Tivo Online Forums", "Tivo Communicty Form", "http://www.tivocommunity.com/tivo-vb/index.php"); 
        menu.addSubItem("links", "Lucas Fabiano's Homepage", "My mate from work Lucas' homepage", "http://www.lucon.com.ar");	
	menu.addSubItem("links", "Hagen Schmieder's Homepage", "My friend from work's website", "http://www.soosee.co.uk");
        menu.addSubItem("links", "Anti-Spam Mail Tools", "Tools to assist finding spammers", "http://combat.uxn.com/index.html");

        menu.addSubItem("castandcrewid", "Tim (me!)", "me on the set of Urban Legend",  "/tim.html");
	menu.addSubItem("castandcrewid", "Lucy", "My wonderful wife",  "/lucy.html");
	menu.addSubItem("castandcrewid", "Stuart", "RoboCop",  "/stuart.html");
	menu.addSubItem("castandcrewid", "Anthony (Biz)", "The Biz Man",  "/biz.html");
//	menu.addSubItem("castandcrewid", "Brad & Gitte", "The happy couple",  "/bradgitte.html");
	menu.addSubItem("castandcrewid", "Tony", "TonyK",  "/tony.html");
	menu.addSubItem("castandcrewid", "Fabian", "hip, happening, FAB",  "/fabian.html");
	menu.addSubItem("castandcrewid", "Jamie Blanks", "My film directing Bro",  "http://us.imdb.com/Name?Blanks,+Jamie");
	menu.addSubItem("castandcrewid", "Ben Blanks", "Benji",  "/ben.html");
//	menu.addSubItem("castandcrewid", "James & Kel", "The soon to be newly-weds",  "/jameskel.html");

	menu.addSubItem("photos", "Richmond [UK]", "One of my cooler photos",  "/richmond.html");
	menu.addSubItem("photos", "My Grandfather", "A photo of my grandfather",  "/grandpa.html");

//	menu.addSubItem("goals", "Get Job", "This is pretty important",  "/jobs.html");
//	menu.addSubItem("goals", "Get Place to Live", "Would help..",  "/accom.html");
	menu.addSubItem("goals", "Visit Stonehenge", "Place I want to see",  "/stonehenge.html");
//        menu.addSubItem("goals", "Visit Abbey Road", "Place I want to see",  "index.html");
//        menu.addSubItem("goals", "Visit Rome", "Place I want to see",  "index.html");


	menu.showMenu();
}
