//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Paging & Voice Mail", "Paging & Voice Mail",  null, null);
	menu.addItem("newsid", "Wireless Phones", "Wireless Phones",  null, null);
	menu.addItem("ditv", "DirecTV", "DirecTV",  null, null);
	menu.addItem("freedownloadid", "Customer Support & Services", "Customer Support & Services",  null, null);
	menu.addItem("searchengineid", "About Us", "About Us",  null, null);
	menu.addItem("miscid", "Contact", "Contact",  null, null);

	menu.addSubItem("webmasterid", "Home Page", "Home Page",  "http://www.airpage.com/index.htm");
	menu.addSubItem("webmasterid", "About Paging", "About Paging",  "http://www.airpage.com/paging.html");
	menu.addSubItem("webmasterid", "Compare Pagers", "Compare Pagers",  "http://www.airpage.com/comparepagers.htm");
	menu.addSubItem("webmasterid", "Promotions", "Promotions",  "http://www.airpage.com/pagerpromotions.htm");
	menu.addSubItem("webmasterid", "About Voice Mail", "About Voice Mail",  "http://www.airpage.com/voice_mail.html");
	menu.addSubItem("webmasterid", "Send an Alpha Page", "Send an Alpha Page",  "http://pager.airpage.com/page.html");
	menu.addSubItem("webmasterid", "Voice Mail Access", "Voice Mail Access",  "http://pager.airpage.com/index.html");
	menu.addSubItem("webmasterid", "User Guides", "User Guides", "http://www.airpage.com/userguides.htm");
	menu.addSubItem("webmasterid", "Coverage Maps", "Coverage Maps", "http://www.airpage.com/pagingcoverage.htm");
	
	menu.addSubItem("newsid", "Home Page", "Home Page",  "http://www.airpage.com/index.htm");
	menu.addSubItem("newsid", "About Phones", "About Phones",  "http://www.airpage.com/cellphones.htm");
	menu.addSubItem("newsid", "Compare Phones", "Compare Phones",  "http://www.airpage.com/nextel.htm");
	menu.addSubItem("newsid", "Promotions", "Promotions",  "http://www.airpage.com/promotionsandrateplans.htm");
	menu.addSubItem("newsid", "Coverage Maps", "Coverage Maps",  "http://airpage.com/phonecoveragelinks.htm");
	
	menu.addSubItem("ditv", "Home Page", "Home Page",  "http://www.airpage.com/index.htm");
	menu.addSubItem("ditv", "About DirecTV", "About DirecTV", "");

	menu.addSubItem("freedownloadid", "Home Page", "Home Page",  "http://www.airpage.com/index.htm");
	menu.addSubItem("freedownloadid", "Send an Alpha Page", "Send an Alpha Page",  "http://pager.airpage.com/page.html");
	menu.addSubItem("freedownloadid", "Voice Mail Access", "Voice Mail Access",  "http://pager.airpage.com/index.html");
	menu.addSubItem("freedownloadid", "User Guides", "User Guides",  "http://www.airpage.com/userguides.htm");
	menu.addSubItem("freedownloadid", "Paging Coverage Maps", "Paging Coverage Maps",  "http://www.airpage.com/pagingcoverage.htm");
	menu.addSubItem("freedownloadid", "NEXTEL Coverage Maps", "NEXTEL Coverage Maps",  "http://www.airpage.com/phonecoveragelinks.htm");

	menu.addSubItem("searchengineid", "Home Page", "Home Page",  "http://www.airpage.com/index.htm");
	menu.addSubItem("searchengineid", "About Airpage", "About Airpage",  "http://www.airpage.com/about_airpage.html");
	

	menu.addSubItem("miscid", "Phone Numbers", "Phone Numbers",  "http://www.airpage.com/contact_us.htm");
	menu.addSubItem("miscid", "Locations", "Locations",  "http://www.airpage.com/contact_us.htm");
	menu.addSubItem("miscid", "Sales", "Sales",  "http://www.airpage.com/contact_us.htm");
	menu.addSubItem("miscid", "Billing", "Billing",  "http://www.airpage.com/contact_us.htm");
	menu.addSubItem("miscid", "Tech Support", "Tech Support",  "http://www.airpage.com/contact_us.htm");
	menu.addSubItem("miscid", "Webmaster", "Webmaster",  "http://www.airpage.com/contact_us.htm");

	menu.showMenu();
}