//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","&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Index", "Index",  null, null);
	menu.addItem("newsid", "&nbsp;&nbsp;&nbsp;In Stock", "In Stock",  null, null);
	menu.addItem("freedownloadid", "&nbsp;&nbsp;&nbsp;Custom Orders", "Custom Orders",  null, null);
	menu.addItem("searchengineid", "Harness", "Harness",  null, null);
	menu.addItem("stuffid","&nbsp;&nbsp;&nbsp;Accessories","Accessories, etc", null, null);
	menu.addItem("miscid", "&nbsp;&nbsp;&nbsp;Driving Bits", "Driving Bits",  null, null);

	menu.addSubItem("webmasterid","Back to Home Page", "Back to Home Page", "index.htm");
	
	menu.addSubItem("newsid", "Two Wheeled vehicles", "Two Wheeled",  "used.htm");
	menu.addSubItem("newsid", "Four Wheeled vehicles", "Four Wheeled",  "used1.htm");
	menu.addSubItem("newsid", "Original Carriages", "Original Carriages",  "original.htm");
	menu.addSubItem("newsid", "Marathon Vehicles", "Marathon Vehicles",  "marathon1.htm");
	menu.addSubItem("newsid", "Cutters and Sleighs", "Cutters and Sleighs",  "cutters.htm");
	menu.addSubItem("newsid", "Sale Items", "Sale Items", "saleitems.html");
	
	menu.addSubItem("freedownloadid", "Original Replicas", "Original Replicas",  "originalreplicas.html");
	menu.addSubItem("freedownloadid", "Two-Wheeled", "Two-Wheeled",  "customtwowheeled.html");
	menu.addSubItem("freedownloadid", "Four-Wheeled Carriages", "Four-Wheeled Carriages",  "customfourwheeled.html");
	menu.addSubItem("freedownloadid", "Custom Marathon Vehicles", "Custom Marathon Vehicles",  "custommarathon.html");
		     	

	menu.addSubItem("searchengineid", "Zilco Harness", "Zilco Harness",  "zilco.html" );
		menu.addSubItem("searchengineid", "A & H Tack Suppliers", "A and H Harness", "ahharnessnew.html");
	menu.addSubItem("searchengineid", "Harness Specials", "Harness Specials", "usedharness.html");

      menu.addSubItem("stuffid", "Carriage Lamps", "Carriage Lamps",  "lamps.htm");
	menu.addSubItem("stuffid", "Spares Kits, etc.", "Spares Kits, etc.",  "accessories.html");

	menu.addSubItem("stuffid", "Wicker Appointments/Accessories", "Wicker Appointments/Accessories", "wicker.html");
	

	menu.addSubItem("miscid", "Driving Bits", "Driving Bits", "drivingbits.html");
     
	
		
	
	
	menu.showMenu();
}

