function showToolbar()
{

	menu = new Menu();
	menu.addItem("main", "Main Page", "Main Page",  "index.htm", "Main Page");
	menu.addItem("fantasy", "Fantasy Artwork", "Fantasy Artwork",  null,null);
		menu.addItem("landscapes", "Landscapes Artwork", "Landscapes Artwork",  null,null);
	menu.addItem("homemademachines", "Home Made Machines Artwork", "Home Made Machines Artwork",  null,null);
	menu.addItem("emailandrew", "Email Andrew", "Email Andrew",  "mailto:&#116;&#111;&#108;&#108;&#101;&#121;&#64;&#102;&#114;&#101;&#101;&#117;&#107;&#46;&#99;&#111;&#109;", "Email Andrew");
	menu.addItem("search", "Search this Website", "Search this Website",  "http://www.tolley.freeuk.com/search.htm", "Search this Website");

menu.addSubItem("fantasy", "Fantasy Artwork Page 1", "Fantasy Artwork Page 1",  "http://www.tolley.freeuk.com/fantasy1.htm");
menu.addSubItem("fantasy", "Fantasy Artwork Page 2", "Fantasy Artwork Page 2",  "http://www.tolley.freeuk.com/fantasy2.htm");

menu.addSubItem("landscapes", "Landscapes Artwork Page 1", "Landscapes Artwork Page 1",  "http://www.tolley.freeuk.com/landscapes1.htm");
menu.addSubItem("landscapes", "Landscapes Artwork Page 2", "Landscapes Artwork Page 2",  "http://www.tolley.freeuk.com/landscapes2.htm");

menu.addSubItem("homemademachines", "Home Made Machines Artwork Page 1", "Home Made Machines Artwork Page 1",  "http://www.tolley.freeuk.com/homemademachines1.htm");
menu.addSubItem("homemademachines", "Home Made Machines Artwork Page 2", "Home Made Machines Artwork Page 2",  "http://www.tolley.freeuk.com/homemademachines2.htm");

	menu.showMenu();
}