//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",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("helpid", "Help TFKD", "Help TFKD",  null, null);

	menu.addSubItem("homeid", "Home", "Home", "index.html", "");
	menu.addSubItem("homeid", "About TFKD", "About TFKD", "about.html", "");

	menu.addSubItem("newsid", "Press Releases", "Press Releases",  "press.html", "");

	menu.addSubItem("helpid", "Donate", "Donate",  "donate.html", "");


	menu.showMenu();
}