function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("filmid", "Filme", "Filme",  null, null);
	menu.addItem("projid", "Aktuelle Projekte", "Aktuelle Projekte",  null, null);
	menu.addItem("listid", "Verleih", "Verleih",  null, null);
	menu.addItem("newsid", "Kritiken", "Kritiken",  null, null);
	menu.addItem("Interviewid", "Interviews", "Interviews",  null, null);
	menu.addItem("letterid", "Briefe", "Briefe",  null, null);
	menu.addItem("bookid", "Buch", "Buch",  null, null);
	
	menu.addSubItem("filmid", "An Der Alten Romischen Strasse", "An Der Alten Romischen Strasse",  "../../films/ORR.html");
	menu.addSubItem("filmid", "Musiker", "Musiker",  "../../films/mus_german.html");
	menu.addSubItem("filmid", "Avetik", "Avetik",  "../../films/avetik_german.html");
	menu.addSubItem("filmid", "Komitas", "Komitas",  "../../films/komitas_german.html");
	menu.addSubItem("filmid", "Der Bar", "Der Bar",  "../../films/bear_german.html");
	menu.addSubItem("filmid", "Nagorno Karabakh",  "../../films/nk_german.html");
	

	menu.addSubItem("projid", "San-Lazzaro", "San-Lazzaro",  "../../proj/s-l.html");
	menu.addSubItem("projid", "The Confession", "The Confession",  "../../proj/conf.html");
	menu.addSubItem("projid", "The Mine", "The Mine",  "../../proj/mine.html");
	menu.addSubItem("projid", "Noraduz", "Noraduz",  "../../proj/noraduz.html");
	menu.addSubItem("projid", "Ararat", "Ararat",  "../../PRESSRELEASE 27.01.2002.html");

	menu.addSubItem("listid", "The Color of Pomegranates", "The Color of Pomegranates",  "../../dlist/granat.html");
	menu.addSubItem("listid", "The Damned", "The Damned",  "../../dlist/deamned.html");
	menu.addSubItem("listid", "And Everything is Repeating", "And Everything is Repeating",  "../../dlist/repeating.html");

	menu.addSubItem("newsid", "...ENGLISH ARTICLES...", "articles in english ",  "../../articles/asbarez.html");
	menu.addSubItem("newsid", "...GERMAN ARTICLES...", "atricles in german",  "../../articles/german/TIP.html");

	menu.addSubItem("Interviewid", "...GERMAN INTERVIEWS...", "Interviews in german", "../../interview/german/F&F 93.html");
	menu.addSubItem("Interviewid", "...ENGLISH INTERVIEWS...", "Interviews in english", "../../interview/english/en_int.html");

	menu.addSubItem("letterid", "...ENGLISH LETTERS...", "Letters in english", "../letter_1.html");

	menu.addSubItem("bookid", "...BUCH...", "Buch", "../../book1/index book.html");
menu.showMenu();
}
