function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  "index.html");
	menu.addItem("deniid", "Personal Pages", "Personal Pages",  null, null);
	menu.addItem("newsid", "Wilde Pages", "Wilde Pages",  null, null);
	menu.addItem("infoid", "Paper Models", "Paper Models",  null, null);
	menu.addItem("salesid", "Photo Album", "Photo Album",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	
        menu.addSubItem("deniid", "About Me", "About Me",  "about.html");
        menu.addSubItem("deniid", "C.V.", "C.V.",  "cv.html");

	menu.addSubItem("newsid", "Character", "Character",  "wldchar.html");
	menu.addSubItem("newsid", "Death", "Death",  "wlddth.html");
	menu.addSubItem("newsid", "Himself", "Himself",  "wldhim.html");
	menu.addSubItem("newsid", "Life", "Life",  "wldlife.html");
	menu.addSubItem("newsid", "Love", "Love",  "wldlove.html");
	menu.addSubItem("newsid", "People", "People",  "wldpple.html");
	menu.addSubItem("newsid", "Thought", "Thought",  "wldthght.html");

	menu.addSubItem("infoid", "Coloured Models", "Coloured Models",  "colmod.html");
	menu.addSubItem("infoid", "Line Drawings", "Line Drawings",  "linedgs.html");
        menu.addSubItem("infoid", "Rallycross Cars", "Rallycross Cars",  "rally.html");

	menu.addSubItem("salesid", "People", "People",  "fotopple.html");
	menu.addSubItem("salesid", "Places", "Places",  "fotoplce.html");
	menu.addSubItem("salesid", "Malaysia", "Malaysia",  "fotomlya.html");
	menu.addSubItem("salesid", "Barcelona", "Barcelona", "fotobarca.html");
	menu.addSubItem("salesid", "Prehistoric", "Prehistoric",  "fotopreh.html");
        menu.addSubItem("salesid", "Aintree '57", "Aintree '57",  "fotogp57.html");

	menu.addSubItem("miscid", "Greeting Cards", "Greeting Cards",  "ecard.html");
	menu.addSubItem("miscid", "Guestbook", "Guestbook",  "http://pub15.bravenet.com/guestbook/show.asp?usernum=1250382256");
	menu.addSubItem("miscid", "Cartoon Of The Day", "Cartoon Of The Day",  "http://pub15.bravenet.com/cartoon/show.asp?usernum=1250382256&cpv=1");
	menu.addSubItem("miscid", "Feedback", "Feedback",  "feedback.html");
	menu.addSubItem("miscid", "Links", "Links",  "links.html");



	menu.showMenu();
}