//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("Home", "HOME", "Home Page", "../../index.htm", "");
	menu.addItem("fleet", "OUR FLEET", "Our Fleet","../../houseboats/open/main.htm","");
	menu.addItem("Photo Gallery", "GALLERY", "Photo Gallery","../../others/fotogall/gallery.htm", "");
	menu.addItem("location", "LOCATION & RIVER MAPS", "Location of Oz Houseboats ","../../others/location/locationopen.htm","");	
	menu.addItem("Terms and conditions", "CONDITIONS", "Hire Conditions", "../../others/conditions/conditions.htm", "");
	menu.addItem("enquiry", "ENQUIRY", "Make an enquiry or booking", "../../others/booking/booking.htm","");
	menu.addItem("contact", "CONTACT", "Contact Details", "../../others/contact/contact.htm","");
	menu.addItem("about", "ABOUT US", "About Oz Houseboats", "../../others/aboutus/aboutus.htm", "");
	
	
	menu.showMenu();
}


