//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("Aboutid","About Us", "About Us",  null, null);
	menu.addItem("Pastid", "Past Projects", "Past Projects",  null, null);
	menu.addItem("Presentid", "Present Projects", "Present Projects",  null, null);
	menu.addItem("Futureid","Future Projects", "Future Projects",  null, null);
	menu.addItem("Childrenid", "Children's Department", "Children's Department",  null, null);





menu.addSubItem("Aboutid", "The Company", "The Company",  "aboutus.htm", "");
menu.addSubItem("Aboutid", "Aria Sandis", "Aria Sandis",  "aria.htm", "");
menu.addSubItem("Aboutid", "Constantine Sandis", "Constantine Sandis",  "constantine.htm", "");
menu.addSubItem("Aboutid", "Elias Korosis", "Elias Korosis",  "elias.htm", "");
menu.addSubItem("Aboutid", "Greece in Britain", "Greece in Britain",  "GIB.htm", "");
menu.addSubItem("Aboutid", "Sponsorship", "Sponsorship",  "sponsorship.htm", "");
menu.addSubItem("Aboutid", "Related Websites", "Related Websites",  "links.htm", "");




menu.addSubItem("Pastid", "Lessons from Louise", "Lessons from Louise",  "lessonsfromlouise.htm", "");
menu.addSubItem("Pastid", "Many Loves", "Many Loves",  "ManyLoves.htm", "");
menu.addSubItem("Pastid", "The Three Little Wolves and the Big Bad Pig", "The Three Little Wolves and the Big Bad Pig",  "threelittlewolves.htm", "");
;menu.addSubItem("Pastid", "Hippolytus", "Hippolytus",  "hippolytus.htm", "");
menu.addSubItem("Presentid", "Greek Season 2006", "Greek Season 2006",  "greekseason2006.htm", "");
menu.addSubItem("Presentid", "Parthenon Lost", "Parthenon Lost",  "parthenonlost.htm", "");

menu.addSubItem("Futureid", "The Chess Players", "The Chess Players", "thechessplayers.htm", "");
menu.addSubItem("Futureid", "Objectivity", "Objectivity",  "objectivity.htm", "");




menu.addSubItem("Childrenid", "Introduction", "Introduction",  "childrensdepartment.htm", "");
	menu.addSubItem("Childrenid", "Main Stage", "Main Stage",  "threelittlewolves.htm", "");
	menu.addSubItem("Childrenid", "Puppet Shows", "Puppet Shows",  "puppetshows.htm", "");
	menu.addSubItem("Childrenid", "Narrating Events", "Narrating EVents",  "narration.htm", "");
menu.addSubItem("Childrenid", "Education and Workshops", "education and Workshops",  "educationandworkshops.htm", "");
menu.addSubItem("Childrenid", "Eugene Trivizas", "Eugene Trivizas",  "trivizas.htm", "");
menu.showMenu();
}	
	









