function showToolbar()
{
	mstyle = new MenuStyle();
	mstyle.bgColor="FFFFFF";
	mstyle.mainMenuBorder=0;
	mstyle.align="center";
	mstyle.subMenuBorder=0;
	mstyle.subMenuWidth=180;
	mstyle.menuDelta = 3; // distance between mainmenu and submenu
	mstyle.clsMenuItemIE = "class=clsMenuItemIE";
	mstyle.clsMenuItemNS = "class=clsMenuItemNS";
	mstyle.bMenuStatic = 1;
	mstyle.mainMenuWidth = "839";

	menu = new Menu(mstyle);
	menu.addItem("homepage", "Home page", null,  "http://www.mollgen.com", null);
	menu.addItem("about us","About us",null,"about.html",null)
	menu.addItem("staff", "Faculty & Staff", "Faculty & Staff",  null, null);
	menu.addItem("Result", "Research", "Research",  null, null);
    menu.addItem("activities","Lab activities",null,"activities.html",null);
	menu.addItem("contact", "Contact us", "contact",  "contact.html", null);

	menu.addSubItem("staff", "Faculty", "tutors and researchers",  "faculty.html");
	menu.addSubItem("staff", "Staff", "enployees",  "staff.html");
	menu.addSubItem("staff", "Graduate students", "masters and PhDs",  "graduates.html");
	
	menu.addSubItem("Result", "Abalone", "abalone aqucaulture and genetic breeding",  "abalone.html");
	menu.addSubItem("Result", "Bay scallop", "bay scallop aqucaulture and genetic breeding",  "scallop.html");
        menu.addSubItem("Result", "Oysters", "oysters taxonomy and evolution",  "oyster.html");

      

	menu.showMenu();
}