function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Home", "Home", "Home",  null, null);
	menu.addItem("Tenerife", "Tenerife", "Tenerife",  null, null);
	menu.addItem("Locality", "Locality", "Locality",  null, null);
	menu.addItem("Apart", "Apartments", "Apartments",  null, null);



	menu.addSubItem("Home", "Home", "Home",  "http://www.tenerife-rentals.co.uk");	

	menu.addSubItem("Tenerife", "Tenerife Tourism", "Tenerife Tourism",  "http://www.canaries-live.com/UK/index.html");
	menu.addSubItem("Tenerife", "Loro Parque", "Loro Parque",  "http://www.loroparque.com/");
	menu.addSubItem("Tenerife", "Mount Teide", "Mount Teide",  "http://www.fell-walker.co.uk/page66.htm");
	
	menu.addSubItem("Locality", "Amarilla Golf Course", "Amarilla Golf Course",  "http://www.amarillagolf.es/ing/index_ing.htm");
	menu.addSubItem("Locality", "Horse Riding", "Horse Riding",  "http://www.tenerife-rentals.co.uk/horse/rancho.htm");
	menu.addSubItem("Locality", "Diving", "Diving",  "http://www.amarilladivers.com/index.html");
		
	menu.addSubItem("Apart", "Availability", "Availability",  "http://www.tenerife-rentals.co.uk/availability/availability.htm");
	menu.addSubItem("Apart", "Comments", "Guest Comments",  "http://www.tenerife-rentals.co.uk/comments.htm");
	menu.addSubItem("Apart", "Pictures", "Pictures",  "http://www.tenerife-rentals.co.uk/pics.htm");
	menu.addSubItem("Apart", "Terms", "Terms",  "http://www.tenerife-rentals.co.uk/tenerife-terms.htm");
	

	menu.showMenu();
}