//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 &nbsp &nbsp", "Home &nbsp &nbsp",  "index.html", null);
	menu.addItem("aboutusid", "About SemiAlloGen", "About SemiAlloGen",  null, null);
	menu.addItem("newsid", "News Updates", "News Updates",  null, null);
	menu.addItem("investorid", "Investor Information", "Investor Information",  null, null);

	menu.addSubItem("aboutusid", "Company Information", "Company Information",  "companyinfo.htm", "");
	menu.addSubItem("aboutusid", "About the Vaccine", "About the Vaccine",  "aboutvaccine.htm", "");
	menu.addSubItem("aboutusid", "Dr. Gattoni-Celli", "Dr. Gattoni-Celli",  "gattonicelli.htm", "");
	menu.addSubItem("aboutusid", "Dr. Kindy", "Dr. Kindy",  "kindy.htm", "");
	
	menu.addSubItem("newsid", "Company News", "Company News",  "newsupdates.htm#company", "");
	menu.addSubItem("newsid", "Product Updates", "Product Updates",  "newsupdates.htm#product", "");
	menu.addSubItem("newsid", "Press Releases", "Press Releases",  "newsupdates.htm#press", "");

	menu.addSubItem("investorid", "Corporate Fact Sheet", "Corporate Fact Sheet",  "corperatefactsheet.htm", "");
	menu.addSubItem("investorid", "Technology Platform", "Technology Platform",  "technologyplatform.htm", "");
	menu.addSubItem("investorid", "Needs, Priorities, and Deliverables", "Needs, Priorities, and Deliverables", "needspd.htm", "");


	menu.showMenu();
}