//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("medeaidid","Main Site","",null,null);
//menu.addItem("showid","Show","","default.html",null);
menu.addItem("showidid","The Show","",null,null);
menu.addItem("synopsisid","Synopsis","","synopsis.html",null);
menu.addItem("playlistid","Music","","music.html",null);
menu.addItem("castid","Cast","","cast.html",null);
menu.addItem("programid","Programme","","program.html",null);
menu.addItem("creditid","Credits","","credits.html",null);
menu.addItem("ticketsid","Tickets","","tickets.html",null);
menu.addItem("photosid","Photos","",null,null);
menu.addItem("indexid","Index","","../webindex.html",null);

/*menu.addSubItem("showid","Swing Out","","show/default.html","");
menu.addSubItem("showid","&nbsp","","","");

menu.addSubItem("synopsisid","The Story","","synopsis.html","");
menu.addSubItem("synopsisid","&nbsp","","","");

menu.addSubItem("castid","Performers","","cast.html","");
menu.addSubItem("castid","&nbsp","","","");*/

menu.addSubItem("medeaidid","Home","","../default.html","");
menu.addSubItem("medeaidid","Musical","","../musical/default.html","");
menu.addSubItem("medeaidid","Performance","","../perform/default.html","");
menu.addSubItem("medeaidid","Voice","","../voice/default.html","");
menu.addSubItem("medeaidid","News","","../news/default.html","");
menu.addSubItem("medeaidid","About","","../about/default.html","");
menu.addSubItem("medeaidid","Photos","","../photos/default.html","");
menu.addSubItem("medeaidid","&nbsp","","","");

menu.addSubItem("showidid","Theatre Poster &bull; You are here!","","","");
menu.addSubItem("showidid","&nbsp","","","");

menu.addSubItem("photosid","Singers","","photos/default.html","");
menu.addSubItem("photosid","Dancers","","photos/dance.html","");
menu.addSubItem("photosid","Band","","photos/musician.html","");
menu.addSubItem("photosid","Scenes","","photos/scene.html","");
menu.addSubItem("photosid","Rehearsals","","photos/rehearsal.html","");
menu.addSubItem("photosid","&nbsp","","","");

/*menu.addSubItem("ticketsid","Box Office","","tickets.html","");
menu.addSubItem("ticketsid","&nbsp","","","");

menu.addSubItem("programid","Programme","","program.html","");
menu.addSubItem("programid","&nbsp","","","");

menu.addSubItem("creditid","Resources","","credits.html","");
menu.addSubItem("creditid","&nbsp","","","");*/


menu.showMenu();
}