//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("photosid", "Lads Photos", "Photos of the Lads",  null, null);
	menu.addItem("girlsid", "Girls Photos", "Photos of the girls",  null, null);
	menu.addItem("otherid", "Other Photos", "Other Photos",  null, null);
	menu.addItem("miscid", "Places to go", "Places to go",  null, null);

	menu.addSubItem("photosid", "Lads", "Lads",  "http://www.the-londoners.com/lads.htm");
	menu.addSubItem("photosid", "Big Dave", "Big Dave",  "http://www.the-londoners.com/dave.htm");
	menu.addSubItem("photosid", "Griff", "Griff",  "http://www.the-londoners.com/griff.htm");
	menu.addSubItem("photosid", "Tall Paul", "Tall Paul",  "http://www.the-londoners.com/tallpaul.htm");
	menu.addSubItem("photosid", "Paulo", "Paulo",  "http://www.the-londoners.com/paulo.htm");
	menu.addSubItem("photosid", "Sam", "Sam",  "http://www.the-londoners.com/sam.htm");
	menu.addSubItem("photosid", "Ish", "Ish",  "http://www.the-londoners.com/ish.htm");
	menu.addSubItem("photosid", "Nick", "Nick",  "http://www.the-londoners.com/nick.htm");
	menu.addSubItem("photosid", "Keeno", "Keeno",  "http://www.the-londoners.com/keeno.htm");
	menu.addSubItem("photosid", "Emu", "Emu",  "http://www.the-londoners.com/emu.htm");
	menu.addSubItem("photosid", "Woody", "Woody",  "http://www.the-londoners.com/woody.htm");
	menu.addSubItem("photosid", "Shreck", "Shreck",  "http://www.the-londoners.com/shreck.htm");
	menu.addSubItem("photosid", "Mowgli", "Mowgli",  "http://www.the-londoners.com/mowgli.htm");

	menu.addSubItem("girlsid", "Welsh Girls", "Welsh Girls",  "http://www.the-londoners.com/welsh.htm");
	menu.addSubItem("girlsid", "118 Girls", "118 Girls",  "http://www.the-londoners.com/118.htm");
	menu.addSubItem("girlsid", "Dartford Girls", "Dartford Girls",  "http://www.the-londoners.com/dartford.htm");

	menu.addSubItem("otherid", "Views", "Views",  "http://www.the-londoners.com/views.htm");
	menu.addSubItem("otherid", "Boat Trip", "Boat Trip",  "http://www.the-londoners.com/boat.htm");
	menu.addSubItem("otherid", "Misc", "Misc",  "http://www.the-londoners.com/misc.htm");
	
	menu.addSubItem("miscid", "Places to go", "Places to go",  "http://www.the-londoners.com/places.htm");
	

	menu.showMenu();
}