//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("photogalleryid", "Photogallery", "Photogallery",  null, null);
	menu.addItem("beoid", "Our Beo", "Our Beo",  null, null);
	menu.addItem("greyhoundsid", "Greyhounds", "Greyhounds",  null, null);
	menu.addItem("dogtrainingid", "Dog Training", "Dog Training",  null, null);
	menu.addItem("gotoid", "Go To", "Go To",  null, null);

	menu.addSubItem("photogalleryid", "In Hampstead Heath", "In Hampstead Heath",  "../../Photogallery/InHampsteadHeath/index.html");
	menu.addSubItem("photogalleryid", "Home Sweet Home", "Home Sweet Home",  "../../Photogallery/HomeSweetHome/index.html");
	menu.addSubItem("photogalleryid", "Sooo Sweet", "Sooo Sweet",  "../../Photogallery/SoooSweet/index.html");
	menu.addSubItem("photogalleryid", "Greyhound Meeting", "Greyhound Meeting",  "../../Photogallery/GreyhoundMeeting2001/index.html");
	menu.addSubItem("photogalleryid", "Christmas", "Christmas",  "../../Photogallery/Christmas/index.html");
	menu.addSubItem("photogalleryid", "Littlehampton Beach", "Littlehamton Beach",  "../../Photogallery/AtLittlehamptonBeach/index.html");
	menu.addSubItem("photogalleryid", "Crufts2002", "Crufts2002",  "../../Photogallery/Crufts2002/index.html");
	menu.addSubItem("photogalleryid", "Cambridge Garden", "Cambridge Garden",  "../../Photogallery/CambridgeGarden/index.html");
	menu.addSubItem("photogalleryid", "Cambridge Walkies", "Cambridge Walkies",  "../../Photogallery/CambridgeWalkies/index.html");
	menu.addSubItem("photogalleryid", "Funny Pics", "Funny Pics",  "../../Photogallery/FunnyPics/index.html");

	menu.addSubItem("beoid", "Beo's History", "Beo's History",  "../../OurBeo/BeosHistory.html");
	menu.addSubItem("beoid", "Beo's Racing Record", "Beo's Racing Record",  "../../OurBeo/BeosRacingRecord.html");

	menu.addSubItem("greyhoundsid", "Interesting Trivia", "Interesting Trivia",  "../../Greyhounds/GreyhoundTrivia.html");
	menu.addSubItem("greyhoundsid", "Greyhound Art", "Greyhound Art",  "../../Greyhounds/GreyhoundArt.html");
	menu.addSubItem("greyhoundsid", "Greyhound Poetry", "Greyhound Poetry",  "../../Greyhounds/GreyhoundPoetry.html");
	menu.addSubItem("greyhoundsid", "Greyhound Profile", "Greyhound Profile",  "../../Greyhounds/GreyhoundProfile.html");
	menu.addSubItem("greyhoundsid", "Greyhound Links", "Greyhound Links",  "../../Greyhounds/GreyhoundLinks.html");

	menu.addSubItem("dogtrainingid", "Training Books", "Training Books",  "../../DogTraining/TrainingBooks.html");
	menu.addSubItem("dogtrainingid", "Training Links", "Training Links",  "../../DogTraining/TrainingLinks.html");
	
	menu.addSubItem("gotoid", "Beo's Home Page", "Beo's Home Page",  "../../index.html");
	menu.addSubItem("gotoid", "My Home Page", "My Home Page",  "../../index.html");

	menu.showMenu();
}