//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
        menu.addItem("homeid", "HOMEPAGE", "HOMEPAGE",  null, null);
	menu.addItem("musicid", "MUSIC", "MUSIC",  null, null);
	menu.addItem("historyid", "HISTORY", "HISTORY",  null, null);
	menu.addItem("hellenismid", "HELLENISM AND DIASPORA", "HELLENISM AND DIASPORA",  null, null);
	menu.addItem("photographsid", "PHOTOGRAPHS", "COMING SOON!",  null, null);
	menu.addItem("contactusid", "CONTACT", "CONTACT",  null, null);
	
	
	menu.addSubItem("homeid", "Trapezounta.com", "Trapezounta.com",  "http://www.trapezounta.com/");

	menu.addSubItem("musicid", "Discography (English)", "Discography (English)",  "http://www.trapezounta.com/diskEn.htm");
	menu.addSubItem("musicid", "Discography (Greek)", "Discography (Greek)",  "http://www.trapezounta.com/diskgr.htm");
	menu.addSubItem("musicid", "Music Links", "Music Links",  "http://www.trapezounta.com/ellmusic.htm");
	menu.addSubItem("musicid", "RADIO TRAPEZOUNTA", "Radio Trapezounta",  "http://www.live365.com/stations/193028");

        menu.addSubItem("historyid", "Anastoro", "Historical Calendar",  "http://www.trapezounta.com/anastoro.htm");
	menu.addSubItem("historyid", "Articles", "Articles",  "http://www.trapezounta.com/articles.htm");
	menu.addSubItem("historyid", "Must See Links", "Must See Links", "http://www.trapezounta.com/links.htm");

	menu.addSubItem("hellenismid", "Societies", "Societies",  "http://www.trapezounta.com/pontsoc.htm");
	menu.addSubItem("hellenismid", "Apazidis Family", "Apazidis Family",  "http://www.trapezounta.com/apazidisen.htm");
	menu.addSubItem("hellenismid", "Events", "Events",  "http://www.trapezounta.com/events.htm");

	menu.addSubItem("photographsid", "Coming soon", "Coming soon",  "http://www.trapezounta.com/");
	menu.addSubItem("photographsid", "Trapezounta Yahoo Groups", "Become a member to see pictures!",  "http://groups.yahoo.com/group/trapezounta/");



	menu.addSubItem("contactusid", "E-mail ", "trapezounta@yahoo.com ",  "mailto:trapezounta@yahoo.com");
	menu.addSubItem("contactusid", "ICQ", "ICQ",  "http://web.icq.com/wwp?Uin=79394664");
	menu.addSubItem("contactusid", "Yahoo Group", "Yahoo Group",  "http://groups.yahoo.com/group/trapezounta/");

	

	menu.showMenu();
}