//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("webmasterid", "About Us", "About Us",  null, null);
	menu.addItem("newsid", "Sales Schedule", "Sale Schedule",  null, null);
	menu.addItem("freedownloadid", "Services", "Services",  null, null);
	menu.addItem("searchengineid", "Livestock", "Livestock",  null, null);
	menu.addItem("miscid", "Buy or Sell On-line", "Buy or Sell On-line",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "Opening Ad.htm", "main");
	menu.addSubItem("webmasterid", "History", "History",  "History.htm", "main");
	menu.addSubItem("webmasterid", "Associations", "Associations",  "linkscalhounStockyard.htm", "main");
	menu.addSubItem("webmasterid", "Our Mission", "Our Mission",  "History.htm#Our Mission", "main");
        menu.addSubItem("webmasterid", "Contact Us", "Contact Us",  "Contact Us.htm", "main");
	menu.addSubItem("webmasterid", "Links", "Links", "linkscalhounStockyard.htm", "main");

	menu.addSubItem("newsid", "Special Events", "Special Events",  "July 28 10 Year.htm", "main");
	menu.addSubItem("newsid", "Calendar", "Calendar",  "Three Month Calendar.htm", "main");
	menu.addSubItem("newsid", "Special Sales", "Special Sales",  "Special Equipment Sale.htm", "main");
	menu.addSubItem("newsid", "Buyers", "Buyers",  "Underconstruction.htm", "main");
	
	menu.addSubItem("freedownloadid", "Livestock Hauling", "Livestock Hauling",  "Hauling.htm", "main");
	menu.addSubItem("freedownloadid", "Programs", "Programs",  "Opening Ad.htm", "main");
	menu.addSubItem("freedownloadid", "Advertisers", "Advertisers",  "Underconstruction.htm", "main");

	menu.addSubItem("searchengineid", "", "",  "", "");
	menu.addSubItem("searchengineid", "Livestock Listing", "Livestock Listing",  "Underconstruction.htm", "main");
	menu.addSubItem("searchengineid", "Market Report", "Market Report", "linkscalhounStockyard.htm", "main");
	
	menu.addSubItem("miscid", "Want to Buy", "Want to Buy",  "Livestock Wanted.htm", "main");
	menu.addSubItem("miscid", "Livestock for Sale", "Livestock for Sale",  "Livestock listing.htm", "main");
	menu.addSubItem("miscid", "Equipment for Sale", "Equipment for Sale",  "Equipment for Sale.htm", "main");
	menu.addSubItem("miscid", "Miscellaneous for Sale", "Miscellaneous for Sale",  "Underconstruction.htm", "main");
	menu.showMenu();
}
