//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("wheelkits", "ATV Wheel Kits", "ATV Wheel Kits",  null, null);
	menu.addItem("atvtires", "Tires & Wheels", "",  null, null);
	menu.addItem("speciality", "Speciality Products", "",  null, null);
	menu.addItem("package", "Package Deals", "",  null, null);
	menu.addItem("overstock", "Overstock Items", "",  null, null);
	
	menu.addSubItem("speciality", "Acerbis Plastics", "",  "http://www.onoffroad.com/c-ACERBIS.html", "");
	menu.addSubItem("speciality", "NStyle Graphics", "",  "http://www.onoffroad.com/c-NST-GR.html", "");
	menu.addSubItem("speciality", "FMF Exhaust", "",  "http://www.onoffroad.com/c-FMF-EXHAUST.html", "");
	menu.addSubItem("speciality", "Helmets", "",  "http://www.onoffroad.com/c-HELMETS.html", "");
	menu.addSubItem("speciality", "Oxlite Ramps", "",  "http://www.onoffroad.com/c-OXLITE-LOADING-RAMPS.html", "");	
	menu.addSubItem("speciality", "AC Racing", "",  "http://www.onoffroad.com/c-ACRACING.html", "");	
	menu.addSubItem("speciality", "O'Neal Gear", "",  "http://www.onoffroad.com/c-ONEAL.html", "");	
  
	menu.addSubItem("package", "Chain Combos", "",  "http://www.onoffroad.com/c-CHAINCOMBOS.html", "");
	menu.addSubItem("package", "Excel Rims Hubs", "",  "http://www.onoffroad.com/c-Excel.html", "");
	menu.addSubItem("package", "Barnett Clutches", "",  "http://www.onoffroad.com/c-BARNETT-CLUTCHES.html", "");
	menu.addSubItem("package", "Did Chains", "",  "http://www.onoffroad.com/p-DID-PRO-SERIES-CHAIN.html", "");	
	menu.addSubItem("package", "IronmanSprockets", "",  "http://www.onoffroad.com/c-IRONMAN-SPROCKETS.html", "");	

	menu.addSubItem("overstock", "Accessories",  "", "http://www.onoffroad.com/c-_OVERSTOCK-ACCESSORIES.html", "");
	menu.addSubItem("overstock", "Helmets", "",  "http://www.onoffroad.com/c-_OVERSTOCK-HELMETS.html", "");
	menu.addSubItem("overstock", "Riding Gear", "",  "http://www.onoffroad.com/c-_OVERSTOCK-GEAR.html", "");
	menu.addSubItem("overstock", "Overstock Tires", "",  "http://www.onoffroad.com/c-_OVERSTOCK-TIRES.html", "");

	menu.addSubItem("wheelkits", "ATV AG Kits", "",  "http://www.onoffroad.com/p-ATV-AG-KIT.html", "");
	menu.addSubItem("wheelkits", "Hard Surface Kits", "",  "http://www.onoffroad.com/p-ATV-HARD-SURFACE-KIT.html", "");
	menu.addSubItem("wheelkits", "Mule Hard Surface", "", "http://www.onoffroad.com/p-MULE-HARD-SURFACE-KIT.html", "");
	menu.addSubItem("wheelkits", "Mule Bigfoot Kits", "",  "http://www.onoffroad.com/p-ATV-MULE-BIGFOOT-KIT.html", "");
	menu.addSubItem("wheelkits", "ATV Bigfoot Kits", "",  "http://www.onoffroad.com/c-BIGFOOT-KITS.html", "");
	menu.addSubItem("wheelkits", "ATV Sand Kits", "",  "http://www.onoffroad.com/c-WHEELS-SAND.html", "");    
    menu.addSubItem("wheelkits", "ATV Race Kits", "",  "http://www.onoffroad.com/c-ATV-RACE-WHEELS-KITS.html", "");    

	menu.addSubItem("atvtires", "ATV Tires", "",  "http://www.onoffroad.com/c-ATV-TIRES.html", "");
	menu.addSubItem("atvtires", "ATV Wheels", "",  "http://www.onoffroad.com/c-WHEELS-ITP-ATV.html", "");
	menu.addSubItem("atvtires", "Motocross Tires", "",  "http://www.onoffroad.com/c-MOTOCROSS-ENDURO-TIRES.html", "");
	menu.addSubItem("atvtires", "Street Tires", "",  "http://www.onoffroad.com/c-MOTORCYCLE-STREET.html", "");
	menu.addSubItem("atvtires", "Dual Sport Tires", "",  "http://www.onoffroad.com/c-DUAL-SPORT-AND-TRIALS-TIRES.html", "");
	menu.addSubItem("atvtires", "Scooter & TT Tires", "",  "http://www.onoffroad.com/c-SCOOTER-TIRES.html", "");

	menu.showMenu();
}