function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

  menu = new Menu();
  menu.addItem("homeid", "Home Page", "Home Page", null, null);
  menu.addItem("listid", "Listings", "View Listings", null, null);
  menu.addItem("infobuy", "Help for Buyers", "Get Help", null, null);
  menu.addItem("infosell", "Help for Sellers", "Get Help", null, null);
  menu.addItem("ausinfo", "Austin Info", "Info on Austin", null, null);
  menu.addItem("feedback", "Feedback", "Feedback, comments", null, null);
  menu.addItem("contact", "About/Contact", "Contact", null, null);
  menu.addItem("lanid", "Language", "Change Language", null, null);

// Home Menu 
  menu.addSubItem("homeid", "Go Back Home", "Home Page", "/index.html");

// Listings menu
//  menu.addSubItem("listid", "View Current Listings", "View Listings", "http://www.remax-texas.com/agent/proplist.asp?CEQ_AgentCode=332723", 1);
  menu.addSubItem("listid", "Search for Local Listings", "Search for Local Listings (MLS)", "/listings.html");
  menu.addSubItem("listid", "SmartClose", "Close your home, all online!", "/sclose.html");
  menu.addSubItem("listid", "My listings", "My Listings (MLS)", "/Mylistings.html");
// Info Menu - buyers
  menu.addSubItem("infobuy", "Help for Buyers", "Buyer Information", "/buyer.html");
  menu.addSubItem("infobuy", "SmartClose", "Manage you closing online!", "/sclose.html");
  menu.addSubItem("infobuy", "Mortgage and Loan Info.", "Mortgage Information", "/mortgage.html");
  menu.addSubItem("infobuy", "Area Builders", "Austin Area Home Builders", "/builders.html");
  menu.addSubItem("infobuy", "Relocation Info.", "Relocation Information", "/reloc.html");

// Info Menu - sellers
  menu.addSubItem("infosell", "Help for Sellers", "Seller Information", "/seller.html");
  menu.addSubItem("infosell", "Marketing Plan", "How we sell your property", "/plan.html");
  menu.addSubItem("infosell", "Tips for Sellers", "Tips on selling your home", "/sell_tips.html");
  menu.addSubItem("infosell", "Moving Checklist", "Moving Checklist", "/mvchk.html", 1);  
  menu.addSubItem("infosell", "Relocation Info.", "Relocation Information", "/reloc.html");

// Austin Menu
  menu.addSubItem("ausinfo", "City Information", "Info on Austin", "/aus_info.html");
  menu.addSubItem("ausinfo", "Points of Interest", "Points of Interest", "/aus_poi.html");
  menu.addSubItem("ausinfo", "Government", "Local and state Government", "/aus_gov.html");
  menu.addSubItem("ausinfo", "Internet Providers", "Dial-Up/Cable/DSL providers in Austin", "/aus_isp.html");
  menu.addSubItem("ausinfo", "Entertainment", "Movies, Clubs, Music in Austin", "/aus_ent.html");
  menu.addSubItem("ausinfo", "School Info & Reports", "School Districts in Austin", "/aus_school.html");
  menu.addSubItem("ausinfo", "Local Travel/Vacation Agents", "Escape the city life and have some fun!", "http://www.myb.com/", 1);

// Contact Menu
  menu.addSubItem("contact", "View Jerry's Bio", "Who is Jerry?", "/bio.html");
  menu.addSubItem("contact", "View Contact Info", "Contact information", "/info.html");

// Feedback Menu
  menu.addSubItem("feedback", "Client/Visitor Comments", "Satisfied customers", "/vbpro/htdocs/clients/");
  menu.addSubItem("feedback", "Website Comments", "Comments, ideas, question?", "/webfeed.php3");
// menu.addSubItem("feedback", "Get My Page", "Foo", "/my/");

// Lang. Menu
  menu.addSubItem("lanid", "Coming soon", "Coming soon", "/lang.html");

	menu.showMenu();
}
