function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
menu.addItem("main", "Home","Home Page", "http://www.jurajtatar.com/homeen.html", null, null);
menu.addItem("news", "News","News", "http://www.jurajtatar.com/news.html", null, null);
menu.addItem("bio", "Biography","Biography", "http://www.jurajtatar.com/biography.html", null, null);
menu.addItem("disc", "Discography", "Discography",  "http://www.jurajtatar.com/discography.html", null, null);
menu.addItem("koncerty", "On Tour","On Tour", "http://www.jurajtatar.com/ontour.html", null, null);
menu.addItem("galeria", "Photos","Photos", "http://www.jurajtatar.com/photos.html", null, null);
menu.addItem("nastrojovka", "Equipment", "Equipment",  "http://www.jurajtatar.com/setup.html", null, null);
menu.addItem("kontakt", "Contact", "Contact",  "http://www.jurajtatar.com/contact.html", null, null);
menu.addItem("odkaz", "Links", "Links",  "http://www.jurajtatar.com/links.html", null, null);
menu.addItem("store", "Store", "Store",  "http://www.jurajtatar.com/Shopen.html", null, null);


	menu.showMenu();
}