//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("homeid", "Home", "Home",  "http://www.wemtech.co.uk/index.htm", "");
	menu.addItem("markingid", "EMC & CE Marking", "EMC & CE Marking",  null, null);
	menu.addItem("trainingid", "Training", "Training",  null, null);
	menu.addItem("consultid", "Consultancy", "Consultancy",  null, null);
	menu.addItem("contactid", "Contact", "Contact",  "http://www.wemtech.co.uk/contact.htm", "");

	menu.addSubItem("markingid", "The CE Association", "The CE Association",  "http://www.wemtech.co.uk/EMC_About_The_Club.htm", "");
	menu.addSubItem("markingid", "Members Area", "Members Area",  "http://www.wemtech.co.uk/EMC_Club_News.asp", "");
	menu.addSubItem("markingid", "Members Services", "Members Services",  "http://www.wemtech.co.uk/EMC_Members_Services.htm", "");
	menu.addSubItem("markingid", "Client Feedback", "Client Feedback",  "http://www.wemtech.co.uk/feedback.htm", "");

	menu.addSubItem("trainingid", "Public Calendar", "Public Calendar",  "http://www.wemtech.co.uk/ioi/wem_calendar.asp", "");
	menu.addSubItem("trainingid", "In-company", "In-company",  "http://www.wemtech.co.uk/ioi/wem_calcomp.asp", "");
	menu.addSubItem("trainingid", "Client Feedback", "Client Feedback",  "http://www.wemtech.co.uk/feedback.htm", "");

	menu.addSubItem("consultid", "About Us", "About Us",  "http://www.wemtech.co.uk/con_index.htm", "");
	menu.addSubItem("consultid", "Services", "Services",  "http://www.wemtech.co.uk/con_services.htm", "");
	menu.addSubItem("consultid", "Key Clients", "Key Clients",  "http://www.wemtech.co.uk/con_keyclients.htm", "");

	menu.showMenu();
}
