//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",  "home.html", null);
	menu.addItem("newsid", "Newsflash", "Newsflash",  "newsflash.php", null);
	menu.addItem("objectsid", "Association objectives", "Association objectives",  "objects.html", null);
	menu.addItem("memlistid", "Membership", "Membership",  "member.php", null);
	menu.addItem("feature", "Feature Articles", "Feature Artciles",  "features.php", null);
	menu.addItem("codeid", "Code of practice", "Code of practice",  "code.html", null);
	menu.addItem("contid", "Contact us", "Contact us",  "contact.html", null);

	menu.showMenu();
}
