//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("aboutus", "About Us", "Find out more about the Wood Science Foundation",  null, null);
menu.addItem("projects", "Project", "Read text, news and articles about our current projects",  null, null);
menu.addItem("publications", "Publications", "Read serialised publications and research papers",  null, null);
menu.addItem("links", "Links", "See related sites and organisations",  null, null);
menu.addItem("contactus", "Contact Us", "Send us your opinion and comments",  null, null);
menu.addSubItem("aboutus", "Home", "", "index.html", "");
menu.addSubItem("aboutus", "Objectives", "",  "objectives.htm", "");
menu.addSubItem("aboutus", "Regulations (NL)", "",  "regulations.htm", "");
menu.addSubItem("projects", "Project Description", "",  "projects.htm", "");
menu.addSubItem("projects", "Past and current publications", "",  "pastandcurrent.htm", "");
menu.addSubItem("publications", "Publications for download", "", "downloads.htm", "");
menu.addSubItem("links", "Download Adobe Reader", "", "http://www.adobe.com/products/acrobat/readstep2.html", "new");
menu.addSubItem("links", "TU Delft", "", "http://www.tudelft.nl", "new");
menu.addSubItem("contactus", "Contact Details & Staff", "", "staff.htm", "");
menu.showMenu();
}
//If you want the links to load in another frame/window, specify name of target (ie: target="_new")
var target=""
