function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);
	menu = new Menu();
	menu.addItem("home", "Home", "Limey on the road homepage...",  "http://www.limeyontheroad.com/index.html", null);
	menu.addItem("route", "Route", "Where I've gone...", null,  "http://www.limeyontheroad.com/proposed_route.html");
	menu.addItem("current position", "Current Position", "Where I am at the moment...", null,  "http://www.limeyontheroad.com/current_location.html");
	menu.addItem("blog", "Blog", "My blog...", null,  "http://www.limeyontheroad.com/blog.html");
	menu.addItem("photos", "Photos", "My photos...", null,  "http://www.limeyontheroad.com/photos.html");
	menu.addItem("rants and raves", "Rants and Raves", "Raving and Ranting...", null,  "http://www.limeyontheroad.com/Rants_and_Raves.html");
	menu.addItem("tips for the road", "Tips for the Road", "Any suggestions?...", null,  "http://www.limeyontheroad.com/tips.html");
	menu.addItem("joke of the day", "Joke of the Day", "How do you get a giraffe in a fridge?", null,  "http://www.limeyontheroad.com/joke.html");
	menu.addItem("in other news", "In Other News", "Anything that doesn't fit any of the categories...", null,  "http://www.limeyontheroad.com/news.html");
	menu.addSubItem("blog", "October 2004", "October 2004",  "http://www.limeyontheroad.com/blog.html", "",null);
	menu.showMenu();
}

function UpdateIt(){
if (ie && keepstatic && !opr6)
document.all["MainTable"].style.top = document.body.scrollTop;
setTimeout("UpdateIt()", 200);
}

showToolbar();
UpdateIt();

