function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("vegaslive", " VEGAS LIVE CAMS", " VEGAS LIVE CAMS",  null, null);
	menu.addItem("visitorinfo", " VISTOR INFO", " VISTOR INFO",  null, null);
	menu.addItem("entertainment", " ENTERTAINMENT", " ENTERTAINMENT",  null, null);
	menu.addItem("localinfo", " OFF THE STRIP", " OFF THE STRIP",  null, null);
	menu.addItem("millennium", " IN VEGAS LIVE INFO", " IN VEGAS LIVE INFO",  null, null);

	menu.addSubItem("vegaslive", " Live Cam Broadcast", "Live Cam Broadcast",  "http://www.invegaslive.com/VegasLive/LiveBroadcast.shtml");
	menu.addSubItem("vegaslive", " Live City View", "Live City View",  "http://www.invegaslive.com/VegasLive/CityView.shtml");
	menu.addSubItem("vegaslive", " Live Street View", "Live Street View",  "http://www.invegaslive.com/VegasLive/StreetView.shtml");
	menu.addSubItem("vegaslive", " Live Radio Broadcast", "Live Radio Broadcast",  "http://www.invegaslive.com/VegasLive/Live365/index.shtml");
	
	menu.addSubItem("visitorinfo", " Las Vegas Resorts", " Las Vegas Resorts",  "http://www.invegaslive.com/VegasResorts/index.shtml");
	menu.addSubItem("visitorinfo", " Visitor Information", "Visitor Information",  "http://www.invegaslive.com/VegasInfo.shtml");
	menu.addSubItem("visitorinfo", " Vegas Strip Map", " Vegas Strip Map", "http://www.invegaslive.com/StripMap.shtml");

	menu.addSubItem("entertainment", " Special Show Dates", " Special Show Dates",  "http://www.invegaslive.com/VegasShows.shtml");
	menu.addSubItem("entertainment", " Vegas Casino Shows", " Vegas Casino Shows",  "http://www.invegaslive.com/ShowGuide.shtml");	

	menu.addSubItem("localinfo", " Hoover Dam", " Hoover Dam",  "http://www.invegaslive.com/OffTheStrip/HooverDam/index.shtml");
	menu.addSubItem("localinfo", " Mt. Charleston", " Mt. Charleston",  "http://www.invegaslive.com/OffTheStrip/MtCharleston/index.shtml");
	menu.addSubItem("localinfo", " Liberace's Museum", " Liberace's Museum",  "http://www.invegaslive.com/OffTheStrip/LiberaceMuseum/index.shtml");
	menu.addSubItem("localinfo", " ChinaTown in Vegas", " ChinaTown in Vegas",  "http://www.invegaslive.com/OffTheStrip/Chinatown/index.shtml");

	menu.addSubItem("millennium", " Vegas Reservations", " Vegas Reservations",  "http://www.invegaslive.com/Reservations.shtml");
	menu.addSubItem("millennium", " Las Vegas Links", " Las Vegas Links",  "http://www.invegaslive.com/Links.shtml");
	menu.addSubItem("millennium", " Contact NVegasLive", " Contact NVegasLive",  "http://www.invegaslive.com/Contact.shtml");

	menu.showMenu();
}