//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);
	menu.addItem("employmentid", "Employment", "Employment",  null, null);
	menu.addItem("directionid", "Directions/Map ", "Directions/Map",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);

        
        menu.addSubItem("homeid", "Home", "Home",  "http://www.bluefieldtransport.com/index.html", "");
           

	menu.addSubItem("servicesid", "Van Services", "Van Services",  "http://www.bluefieldtransport.com/van.html", "");
	menu.addSubItem("servicesid", "Shop Services", "Shop Services",  "http://www.bluefieldtransport.com/shop.html", "");
        menu.addSubItem("servicesid", "FleetCare Provider", "FleetCare Provider",  "http://www.bluefieldtransport.com/fleetcare.html", "");
	
	
	menu.addSubItem("employmentid", "Management", "Management",  "http://www.bluefieldtransport.com/management-app.html", "");
        menu.addSubItem("employmentid", "Office", "Office ",  "http://www.bluefieldtransport.com/office-app.html", "");
        menu.addSubItem("employmentid", "Mechanic", "Mechanic",  "http://www.bluefieldtransport.com/mechanic-app.html", "");
        menu.addSubItem("employmentid", "Shop", "Shop",  "http://www.bluefieldtransport.com/mechanic-app.html", "");
        menu.addSubItem("employmentid", "Truck Driver", "Truck Driver",  "http://www.bluefieldtransport.com/driver-app.html", "");
	

	menu.addSubItem("directionid", "Directions", "Directions",  "http://www.bluefieldtransport.com/directions.html", "");
	menu.addSubItem("directionid", "Map", "Map",  "http://www.bluefieldtransport.com/map.html", "");
	
	menu.addSubItem("contactid", "Contact Us", "Contact Us",  "http://www.bluefieldtransport.com/contact.html", "");
	

	menu.showMenu();
}

