//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("dealersid", "Dealer Locations", "Locate your Nearest Dealer",  null, null);
	menu.addItem("valkyrieid", "Valkyrie Info", "Valkyrie Series of Kitcars",  null, null);
	menu.addItem("downloadid", "Downloads & Manuals", "Downloads & Manuals",  null, null);
	menu.addItem("allianceid", "Alliance Partners", "Quality Component Providers",  null, null);
	menu.addItem("contactid", "Contact US", "Fiberfab US Contact Information",  null, null);

	menu.addSubItem("dealersid", "Factory Fiberfab US", "WASHINGTON - Home of TEAM V",  "http://www.fiberfab.us/", "");
	menu.addSubItem("dealersid", "G-Spot Motorworks", "TEXAS - www.g-spotmotorworks.com",  "http://www.g-spotmotorworks.com/", "");
	
	menu.addSubItem("valkyrieid", "GEN 1 Body", "Vintage Integratable",  "http://www.fiberfab.us/gen1body.html", "");
	menu.addSubItem("valkyrieid", "GEN 1 Frame", "Vintage Integratable",  "http://www.fiberfab.us/gen1frame.html", "");
	menu.addSubItem("valkyrieid", "GEN 1 Package", "Body & Frame Package",  "http://www.fiberfab.us/gen1package.html", "");
	menu.addSubItem("valkyrieid", "U.M.E.T.S. Assembly", "Advanced Drivetrain System",  "http://www.fiberfab.us/umets.html", "");
	menu.addSubItem("valkyrieid", "Options", "Available Options",  "http://www.fiberfab.us/options.html", "");
	menu.addSubItem("valkyrieid", "Interior", "Simple to Custom Interiors",  "http://www.fiberfab.us/interior.html", "");
	menu.addSubItem("valkyrieid", "Type-R Frames", "High Performance Equipment",  "http://www.fiberfab.us/typerframe.html", "");
	menu.addSubItem("valkyrieid", "GEN 2 Valkyrie", "Generation 2 Valkyrie Series",  "http://www.fiberfab.us/gen2valkyrie.html", "");
	menu.addSubItem("valkyrieid", "Updates", " Fiberfab US Newest Updates",  "http://www.fiberfab.us/updates.html", "");

	menu.addSubItem("downloadid", "Manuals", "Vintage Manuals",  "http://www.fiberfab.us/manuals.html", "");
	menu.addSubItem("downloadid", "Dealer Info", "Dealer Application",  "http://www.fiberfab.us/dealerinfo.doc", "");
	menu.addSubItem("downloadid", "Valkyrie Info", "Valkyrie Info Packet",  "http://www.fiberfab.us/kitprices.doc", "");

	menu.addSubItem("allianceid", "Clark's Corvair Parts Inc.", "Worlds Largest Corvair Parts Supplier",  "http://www.corvair.com/", "");
	menu.addSubItem("allianceid", "Kennedy - KEP - Adaptors", "Specializing in Engine Adaptors",  "http://www.kennedyeng.com/", "");
	menu.addSubItem("allianceid", "Stewart-Warner Gauges", "Over 100 years of Quality Gauges",  "http://www.stewartwarner.com/", "");
	menu.addSubItem("allianceid", "Team Simpson Products", "Safety Equiptment for all Purposes",  "http://www.teamsimpson.com/", "");
	menu.addSubItem("allianceid", "Flaming River Industries", "Quality Steering Components", "http://www.flamingriver.com/", "");
	menu.addSubItem("allianceid", "C.A. Chassisworks", "Custom Suspension Components",  "http://www.cachassisworks.com/", "");
	menu.addSubItem("allianceid", "Renegade Hybrids", "Porsche Transaxle to V8 Specialists",  "http://www.renegadehybrids.com/kitcars.htm","");

	menu.addSubItem("contactid", "Fiberfab US", "Fiberfab US",  "http://www.fiberfab.us/contact.html", "");
	menu.addSubItem("contactid", "Fiberfab US Admin", "Fiberfab US Admin",  "mailto:valkyrie@fiberfab.us", "");
	menu.addSubItem("contactid", "Fiberfab US Sales", "Fiberfab US Sales",  "mailto:ffsales@fiberfab.us", "");
	menu.addSubItem("contactid", "Fiberfab US Support", "Fiberfab US Support",  "mailto:fffactory@fiberfab.us", "");

	menu.showMenu();
}