function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutid", "about", "info about keepondreaming",  null, null);
	menu.addItem("filesid", "files", "keepondreaming themes",  null, null);
	menu.addItem("networkid", "network", "keepondreaming network",  null, null);
	menu.addItem("linkid", "links", "interesting links",  null, null);
	menu.addItem("contactid", "contacts", "guestbook and e-mail",  null, null);

	menu.addSubItem("aboutid", "about keepondreaming", "what does keepondreaming stand for",  "http://keepondreaming.eu/en/about.htm");
	menu.addSubItem("aboutid", "webmaster", "about the webmaster",  "http://keepondreaming.eu/en/webmaster.htm");
	
	menu.addSubItem("filesid", "files", "about keepondreaming themes",  "http://keepondreaming.eu/en/files.htm");
	menu.addSubItem("filesid", "consciousness and spirituality", "theme consciousness and spirituality",  "http://keepondreaming.eu/en/consciousness_and_spirituality.htm");
	menu.addSubItem("filesid", "body and mind", "theme body and mind",  "http://keepondreaming.eu/en/body_and_mind.htm");
	menu.addSubItem("filesid", "relations and psychology", "theme relations and psychology",  "http://keepondreaming.eu/nl/relations_and_psychology.htm");
	menu.addSubItem("filesid", "sustainability", "theme sustainability",  "http://keepondreaming.eu/en/sustainability.htm");
	menu.addSubItem("filesid", "corporate responsibility", "theme corporate responsibility",  "http://keepondreaming.eu/en/corporate_responsibility.htm");

	menu.addSubItem("networkid", "network", "what is the keepondreaming network?",  "http://keepondreaming.eu/en/network.htm");
	menu.addSubItem("networkid", "biodanza", "biodanza dance for life",  "http://keepondreaming.eu/en/biodanza.htm");
      
	menu.addSubItem("linkid", "links", "interesting links",  "http://keepondreaming.eu/en/interessante_links.htm");
	
	menu.addSubItem("contactid", "guestbook", "please sign my guestbook",  "http://keepondreaming.eu/nl/reacties.php");
	menu.addSubItem("contactid", "forum", "questions/answers and discussions",  "http://keepondreaming.eu/nl/reacties.php");
	menu.addSubItem("contactid", "e-mail", "send an e-mail",  "http://keepondreaming.eu");
	
	menu.showMenu();
}