function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("filmid", "the film", "the film", null, null);
	menu.addItem("galleryid", "gallery", null);
        menu.addItem("productionid", "production", null);
        menu.addItem("connectid", "connect", null);        
        menu.addItem("newsid", "news", null);
        
        

	menu.addSubItem("filmid", "synopsis", "synopsis", "synopsis.htm");
	menu.addSubItem("filmid", "producers", "producers", "producers.htm");
	menu.addSubItem("filmid", "director", "director", "director.htm");
	menu.addSubItem("filmid", "www.orestesmatacena.com", "www.orestesmatacena.com", "http://www.orestesmatacena.com/");
        menu.addSubItem("filmid", "", "", "");

  
	menu.addSubItem("productionid", "cast", "cast", "cast.htm");
	menu.addSubItem("productionid", "crew", "crew", "crew.htm");
	menu.addSubItem("productionid", "equipment", "equipment", "equipment.htm");
	menu.addSubItem("productionid", "", "", "");


	menu.addSubItem("newsid", "updates", "updates", "updates.htm");
	menu.addSubItem("newsid", "gossip", "gossip", "gossip.htm");
        menu.addSubItem("newsid", "special thanks", "special thanks", "thanks.htm");
	menu.addSubItem("newsid", "", "", "");


	menu.addSubItem("galleryid", "cast photos", "cast photos", "castphotos.htm");
	menu.addSubItem("galleryid", "behind the scenes", "behind the scenes",         "scenesalbum/scenesalbum.htm");
	menu.addSubItem("galleryid", "trailer", "trailer", "trailer.htm");
	menu.addSubItem("galleryid", "poster", "poster", "poster.htm");
        menu.addSubItem("galleryid", "movie stills", "movie stills", "stills.htm");
        menu.addSubItem("galleryid", "", "", "");



	menu.addSubItem("connectid", "email", "email",         "mailto:matacena@sexgunsmoneyat20.com");
	menu.addSubItem("connectid", "merchandise", "merchandise", "merchandise.htm");
	menu.addSubItem("connectid", "links", "links", "links.htm");
        menu.addSubItem("connectid", "games", "games", "games.htm");
        menu.addSubItem("connectid", "everything 20", "everything 20", "everything20.htm");
menu.addSubItem("connectid", "", "", "");

	

	menu.showMenu();
}