//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", "Photo Galleries", "Photo Galleries",  null, null);
	menu.addItem("tech", "Technical Data", "Photo Galleries",  null, null);
	menu.addItem("newsid", "Agents", "Agents",  null, null);
	menu.addItem("freedownloadid", "EM Units", "EM Units",  null, null);
	menu.addItem("searchengineid", "Contact", "Contact",  null, null);
	menu.addItem("links", "Other Sites", "Other Sites",  null, null);
	

	menu.addSubItem("webmasterid", "Projects", "Projects",  "http://www.injec.com/projects.htm", "");
	menu.addSubItem("webmasterid", "Bathurst", "Bathurst",  "http://www.injec.com/bathurst.htm", "");
	menu.addSubItem("webmasterid", "Racing", "Racing",  "http://www.injec.com/racing.htm", "");
	menu.addSubItem("webmasterid", "Finke Desert Race", "Finke Desert Race",  "http://www.injec.com/finke_desert_race.htm", "");
	menu.addSubItem("webmasterid", "Turbo Mini", "Turbo Mini",  "http://www.injec.com/turbo_mini.htm", "");
	
	
	menu.addSubItem("tech", "Technical Data", "Technical Data",  "http://www.injec.com/tech_data.htm", "");
	menu.addSubItem("tech", "News Items", "News Items",  "http://www.injec.com/news.htm", "");
	
	menu.addSubItem("newsid", "New South Wales", "New South Wales",  "http://www.injec.com/agents.htm#nsw", "");
	menu.addSubItem("newsid", "Norther Territory", "Norther Territory",  "http://www.injec.com/agents.htm#nt", "");
	menu.addSubItem("newsid", "Queensland", "Queensland",  "http://www.injec.com/agents.htm#qld", "");
	menu.addSubItem("newsid", "South Australia", "South Australia",  "http://www.injec.com/agents.htm#sa", "");
	menu.addSubItem("newsid", "Victoria", "Victoria",  "http://www.injec.com/agents.htm#vic", "");
	menu.addSubItem("newsid", "Western Australia", "Western Australia",  "http://www.injec.com/agents.htm#wa", "");
	menu.addSubItem("newsid", "Belgium", "Belgium",  "http://www.injec.com/agents.htm#bel", "");
	menu.addSubItem("newsid", "Indonesia", "Indonesia",  "http://www.injec.com/agents.htm#ind", "");
	menu.addSubItem("newsid", "Malaysia", "Malaysia",  "http://www.injec.com/agents.htm#mal", "");

	menu.addSubItem("freedownloadid", "EM ONE fuel only", "EM ONE fuel only",  "http://www.injec.com/em1.htm", "");
	menu.addSubItem("freedownloadid", "EM TWO fuel & ignition", "EM TWO fuel & ignition",  "http://injec.com/em2.htm", "");
	menu.addSubItem("freedownloadid", "EM THREE multi coil", "EM THREE multi coil",  "http://injec.com/em3.htm", "");

	menu.addSubItem("searchengineid", "Mail", "Mail",  "http://www.injec.com/contact.htm", "");
	menu.addSubItem("searchengineid", "Email", "Email",  "http://www.injec.com/contact.htm", "");
	menu.addSubItem("searchengineid", "Phone", "Phone", "http://www.injec.com/contact.htm", "");
	
	
	menu.addSubItem("links", "Events", "Events",  "http://www.injec.com/events.htm", "");
	menu.addSubItem("links", "Racing Sites", "Raceing Sites",  "http://www.injec.com/racing_sites.htm", "");
	menu.addSubItem("links", "Performance", "Performance", "http://www.injec.com/performance.htm", "");
	menu.addSubItem("links", "Fuel Injection", "Fuel Injection",  "http://www.injec.com/fuel_injection.htm", "");

	

	menu.showMenu();
}