function showToolbar()
{
// Voci principali(identificativo, voce del menų, testo alternativo nel fumetto, URL,URL alternativa);
// Voci sottomenų(identificativo del menų, voce del sottomenų, testo alternativo nel fumetto, URL);

	menu = new Menu();
	menu.addItem("primomenuid", "Home", "Back to the Homepage","index.htm", null);
	menu.addItem("secondomenuid", "Biography", "Artist biography with the principal initiatives, awards and exhibitions","biography.htm", null);
	menu.addItem("terzomenuid", "Virtual Gallery", "Virtual Gallery featuring oil paintings and watercolors plus a mixed media section",  null, null);
	menu.addItem("quartomenuid", "Awards", "Some awards won by Silvana Brunotti at painting extemporary competitions and contests", "awards.htm", null);
	menu.addItem("quintomenuid", "Exhibitions", "Some personal and collective exhibitions where Silvana Brunotti took part",  "exhibitions.htm", null);
	menu.addItem("sestomenuid", "The critics", "Some critical judgments about Silvana Brunotti painting", "the_critics.htm", null);
	menu.addItem("settimomenuid", "Links", "Art Directory divided by category",  "links/links.htm", null);
	menu.addItem("ottavomenuid", "Contact us", "To contact the artist or the webmaster, to leave your comment in our guestbook or to sign up to our newsletter",  null, null);
	menu.addItem("nonomenuid", "How to buy", "Info about purchasing, payments and shipping",  "how_to_buy.htm", null);
	menu.addItem("decimomenuid", "Site Map", "Links to all the sections of the web site",  "links.htm", null);
	menu.addItem("undicesimomenuid", "Versione italiana", "Vai alla versione italiana",  "it/homepage_it.htm", null);

	
	
	menu.addSubItem("terzomenuid", "Home Gallery", "The opening page of the gallery with links to the other sections",  "virtual_gallery.htm");
	menu.addSubItem("terzomenuid", "Pictures of Rome 1", "The artist Silvana Brunotti represents on these canvas the colors and the suggestions of Rome, with all its many-sided shades",  "pictures_of_rome.htm");
	menu.addSubItem("terzomenuid", "Pictures of Rome 2", "The artist Silvana Brunotti represents on these canvas the colors and the suggestions of Rome, with all its many-sided shades",  "pictures_of_rome2.htm");
    menu.addSubItem("terzomenuid", "Between dream and reality", "Horse paintings, portraits, seascapes, animals on the border between dream and reality",  "dream_and_reality.htm");
	menu.addSubItem("terzomenuid", "Italian landscapes 1", "Landscape painting: gallery of Italian landscapes oil paintings, sunflowers paintings, nature paintings",  "postcards_from_italy.htm");
	menu.addSubItem("terzomenuid", "Italian landscapes 2", "Landscape painting: gallery of Italian landscapes oil paintings, sunflowers paintings, nature paintings",  "postcards_from_italy2.htm");
    menu.addSubItem("terzomenuid", "Still life painting 1", "Gallery of still life painting, still lives, still lives with fruits, flowers and floral compositions",  "still_lives.htm");
	menu.addSubItem("terzomenuid", "Still life painting 2", "Gallery of still life painting, still lives, still lives with fruits, flowers and floral compositions",  "still_lives2.htm");
	menu.addSubItem("terzomenuid", "Watercolors 1", "Gallery of watercolors and wash drawings: pictures of Rome, landscapes, seascapes, still lives",  "watercolours.htm");
	menu.addSubItem("terzomenuid", "Watercolors 2", "Gallery of watercolors and wash drawings: pictures of Rome, landscapes, seascapes, still lives",  "watercolours2.htm");
    menu.addSubItem("terzomenuid", "Mixed techniques", "Gallery of works executed with mixed techniques: pastels, Indian ink, trompe l oeil, charcoal",  "mixed_techniques.htm");
	
	
	
	menu.addSubItem("ottavomenuid", "Form info", "Write us for every information about Silvana Brunotti and her works, or to be update on the next events",  "contact_us.htm");
	menu.addSubItem("ottavomenuid", "Guestbook", "Leave your comment about the site, your opinion about the works or any other message in the guestbook",  "guestbook.htm");
	menu.addSubItem("ottavomenuid", "Newsletter","Join the Silvana Brunotti newsletter to be informed about all the news regarding the website and the artist", "newsletter.htm");
	

	

	menu.showMenu();
}