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

	menu = new Menu();
	menu.addItem("homeid", "ADMINISTRATION", "ADMINISTRATION",  null, null);
	menu.addItem("featureid", "SITE FEATURES", "SITE FEATURES",  null, null);
	menu.addItem("carsid", "CLASSIC CARS", "CLASSIC CARS",  null, null);
	menu.addItem("resourceid", "RESOURCES", "RESOURCES",  null, null);
	menu.addItem("adid", "ADVERTISING", "ADVERTISING",  null, null);
	menu.addItem("contactid", "CONTACT", "CONTACT",  null, null);

	menu.addSubItem("homeid", "Home", "Home",  "http://automotivemileposts.com/");
	menu.addSubItem("homeid", "About Us", "About Us",  "about.html");
	menu.addSubItem("homeid", "Privacy Statement", "Privacy Statement",  "privacy.html");
	menu.addSubItem("homeid", "Mission", "Mission",  "mission.html");
	menu.addSubItem("homeid", "Careers", "Careers",  "careers.html");
	menu.addSubItem("homeid", "Road Map", "Road Map",  "sitemap.html");
	menu.addSubItem("homeid", "Site Construction", "Site Construction",  "construction.html");
	menu.addSubItem("homeid", "Link To Us", "Link To Us",  "linkto.html");
	menu.addSubItem("homeid", "Links", "Links",  "links.html");
	
	menu.addSubItem("featureid", "Recent Site Updates", "Recent Site Updates",  "announcement.html");
	menu.addSubItem("featureid", "MILEPOSTS Garage", "MILEPOSTS Garage",  "http://automotivemileposts.com/garage/");
	menu.addSubItem("featureid", "The Showroom", "The Showroom",  "showroom.html");
	menu.addSubItem("featureid", "Auto Brevity", "Auto Bevity", "http://automotivemileposts.com/autobrevity/");
	menu.addSubItem("featureid", "Classic Car Care", "Classic Car Care",  "carcare.html");
	menu.addSubItem("featureid", "Mileposts Search", "Mileposts Search",  "searchsite.html");
	menu.addSubItem("featureid", "Auto Loan Payment Calculator", "Auto Loan Payment Calculator",  "http://automotivemileposts.com/cars/calculator.html");
	menu.addSubItem("featureid", "Classic Car Condition Rating Guide", "Classic Car Condition Rating Guide",  "rating.html");
	menu.addSubItem("featureid", "Car Tires 101", "Car Tires 101",  "tires101.html");

	menu.addSubItem("carsid", "Main Contents", "Main Contents",  "maincontents.html");
	menu.addSubItem("carsid", "Buick Riviera", "Buick Riviera",  "contentsriviera.shtml");
	menu.addSubItem("carsid", "Cadillac Eldorado", "Cadillac Eldorado",  "contentseldorado.shtml");
	menu.addSubItem("carsid", "Ford Thunderbird", "Ford Thunderbird",  "contentstbird.html");
	menu.addSubItem("carsid", "Continental Mark III", "Continental Mark III",  "contentsmark3.html");
	menu.addSubItem("carsid", "Continental Mark IV", "Continental Mark IV",  "contentsmark4.html");
	menu.addSubItem("carsid", "Continental Mark V", "Continental Mark V",  "contentsmark5.html");
	menu.addSubItem("carsid", "Imperial", "Imperial",  "contentsimperial.html");
	menu.addSubItem("carsid", "Oldsmobile Toronado", "Oldsmobile Toronado",  "contentstoronado.html");
	menu.addSubItem("carsid", "Classic Car Parts Auctions", "Parts Auctions by Year/Make/Model",  "http://automotivemileposts.com/auctions/");
	menu.addSubItem("carsid", "eBay Registration", "eBay Registration",  "auctionreg.shtml");

	menu.addSubItem("resourceid", "New/Used Auto Loans", "New/Used Auto Loans",  "financing.html");
	menu.addSubItem("resourceid", "Refinancing", "Refinancing",  "financingfaq.html");
                   menu.addSubItem("resourceid", "Private Party Loans", "Private Party Loans", "financingperson.html");
	menu.addSubItem("resourceid", "Auto Parts Vendors", "Auto Parts Vendors",  "parts.html");
	menu.addSubItem("resourceid", "Auto Parts Buyer's Guide", "Auto Parts Buyer's Guide",  "http://automotivemileposts.com/products/");
	menu.addSubItem("resourceid", "Cool Car Tools", "Cool Car Tools",  "cartools.html");
	menu.addSubItem("resourceid", "Car Restoration", "Car Restoration",  "restorationlead.html");
	menu.addSubItem("resourceid", "Automotive Books", "Automotive Books",  "referencegeneral.html");
	menu.addSubItem("resourceid", "Car Movies", "Car Movies",  "http://automotivemileposts.com/movies/");
	menu.addSubItem("resourceid", "Car Magazines", "Car Magazines",  "magazines.html");
	menu.addSubItem("resourceid", "Car Clubs and Events", "Car Clubs and Events",  "carclubs.html");

	menu.addSubItem("adid", "Classic Cars For Sale", "Classic Cars For Sale",  "carsforsalephotoads01.html");
	menu.addSubItem("adid", "Sell A Classic Car", "Sell A Classic Car",  "advertising.html");
	menu.addSubItem("adid", "Commercial Ads", "Commercial Ads",  "comingsoon.html");
	menu.addSubItem("adid", "Commercial Rate Card", "Commercial Rate Card",  "adratecard.html");
	menu.addSubItem("adid", "Ad Inquiries", "E-Mail Advertising",  "mailto:advertising@automotivemileposts.com");

	menu.addSubItem("contactid", "AUTOPOSTS Classic Car Forum", "AUTOPOSTS Classic Car Forum",  "http://automotivemileposts.com/forum/?act=home");
	menu.addSubItem("contactid", "Forum FAQs", "Forum FAQs",  "discussionboard.html");
	menu.addSubItem("contactid", "E-Mail Us", "E-Mail Us",  "mailto:customerservice@automotivemileposts.com");

	menu.showMenu();
}