 /***************************************************************************
 * toc.js
 ***************************************************************************/


/*************************************************************************/
// Func: createMenu( sMenuID, sMenuDisplay )
// Func: addMenuItem( sMenuID, sSubMenu, sSubMenuURL [, sTarget] )

function setupMenuArray(path) {

createMenu("mWelcome", "Welcome", "/index.html", path);
addMenuItem("mWelcome", "Home Page", "/index.html", path );
addMenuItem("mWelcome", "Site Table of Contents", "/admin/site_map.html", path );
addMenuItem("mWelcome", "Site Index", "/admin/site_index.html", path );

createMenu("mAbout", "About Us");
//addMenuItem("mAbout", "From the Producer", "about/FromTheProducer.html", path );
addMenuItem("mAbout", "Mission Statement", "/admin/about_us.html", path );
addMenuItem("mAbout", "Staff", "/staff/staff.html", path );
addMenuItem("mAbout", "Location", "/admin/directions.html", path );
addMenuItem("mAbout", "Board of Directors", "/staff/staff.html", path );

createMenu("mBox", "Box Office");
addMenuItem("mBox", "Hours", "/boxoffice/boxoffice.html", path);
addMenuItem("mBox", "Ticket Prices", "/boxoffice/boxoffice.html#prices", path);
//addMenuItem("mBox", "Season Tickets", "/boxoffice/SeasonTickets.html", path);
addMenuItem("mBox", "Roseville Theatre Seating Chart", "/boxoffice/roseville_seating.html", path);
addMenuItem("mBox", "Tower Theatre Seating Chart", "/boxoffice/tower_seating.html", path);
addMenuItem("mBox", "Buy Tickets On-Line", "/season/current.html", path);

createMenu("mTickets", "Buy Tickets On-Line", "/season/current.html", path );

createMenu("mSeason", "Season", "/season/current.html", path);
addMenuItem("mSeason", "Our Current Season", "/season/current.html", path);
addMenuItem("mSeason", "Calendar", "CALENDAR", path); // special URL tag
//addMenuItem("mSeason", "Main Stage Shows", "/season/current.html", path);
//addMenuItem("mSeason", "Children's Theatre", "/season/current.html#children", path);
// addMenuItem("mSeason", "Field Trips", "/childrens_theatre/field_trips.html", path);
//addMenuItem("mSeason", "Master Workshop", "/season/current.html#masters", path);
//addMenuItem("mSeason", "Youth Workshop", "/childrens_theatre/youth_workshops/workshops.html", path);
//addMenuItem("mSeason", "Concerts", "/season/current.html#concerts", path);
//addMenuItem("mSeason", "Special Events", "/season/current.html#events", path);

createMenu("wmChildrens", "Childrens Programs<br>and Workshops", "/childrens_theatre/childrens_theatre.html", path );
addMenuItem("wmChildrens", "Programs", "/childrens_theatre/childrens_theatre.html", path );
addMenuItem("wmChildrens", "Youth Workshop", "/childrens_theatre/youth_workshops", path );
addMenuItem("wmChildrens", "Master Series", "/childrens_theatre/masters/master-workshop.html", path );
addMenuItem("wmChildrens", "Master Series Auditions", "/shows/auditions.html#2-Masters", path );
addMenuItem("wmChildrens", "Friends and Family Workshops", "/childrens_theatre/family/family-workshop.html", path );
addMenuItem("wmChildrens", "Fairy Tales", "/childrens_theatre/fairytale_current.html", path );
addMenuItem("wmChildrens", "Field Trips", "/childrens_theatre/field_trips.html", path);


//createMenu("mWShops", "Workshops");
//addMenuItem("mWShops", "Acting Workshop", "wshop/ActingWS.html", path );
//addMenuItem("mWShops", "Audition Workshop", "wshop/AuditionWS.html", path );
//addMenuItem("mWShops", "Adult Workshop", "/tbd.html", path );
//addMenuItem("mWShops", "Master Workshop", "/childrens_theatre/masters/master-workshop.html", path );
//addMenuItem("mWShops", "Intermediate Workshop", "/tbd.html", path );
//addMenuItem("mWShops", "Youth Workshop", "/childrens_theatre/youth_workshops", path );
//addMenuItem("mWShops", "Little Ones", "/childrens_theatre/youth_workshops/workshops.html", path );


createMenu("mDining", "Theatre Dining", "/dining/", path );

//createMenu("mEvent", "Events");
//addMenuItem("mEvent", "Special Events", "/tbd.html", path );
//addMenuItem("mEvent", "The Birdsall Awards", "event/Birdsalls2007.html", path );
//addMenuItem("mEvent", "Book A Birthday Party", "event/BookABirthdayParty.html", path );
//addMenuItem("mEvent", "Theatre Dining", "/dining/", path );

createMenu("mAud", "Auditions", "/shows/auditions.html", path );
//addMenuItem("mAud", "Main Stage Shows", "/shows/auditions.html", path );
//addMenuItem("mAud", "Master Workshops", "/shows/auditions.html#2-Masters", path );

createMenu("mPress", "Press");
addMenuItem("mPress", "Press Releases", "/press", path );
addMenuItem("mPress", "News", "/news", path );
//addMenuItem("mPress", "Newsletter", "/tbd.html", path );
addMenuItem("mPress", "Email Notification", "/tbd.html", path );

//createMenu("mData", "Database");
//addMenuItem("mData", "Past Seasons", "data/PastSeasons.html", path );
//addMenuItem("mData", "Show Index", "data/ShowIndex.html", path );
//addMenuItem("mData", "Actor Index", "data/ActorIndex.html", path );

createMenu("mSupport", "Support Us");
addMenuItem("mSupport", "Corporate Sponsors", "/sponsors", path );
//addMenuItem("mSupport", "Circle of Partners", "support/CircleOfPartners.html", path );
//addMenuItem("mSupport", "Magic Circle Guild", "/tbd.html", path);
addMenuItem("mSupport", "Web Links", "/admin/links.html", path);

createMenu("mGuild", "Guild");
addMenuItem("mGuild", "Magic Circle Guild", "/guild/index.html", path);
addMenuItem("mGuild", "Usher Sign-Up", "http://64.113.110.72:8041/cgi-bin/ushers.cgi", path);



createMenu("mContact", "Contact Us", "/admin/contact.html", path);
//addMenuItem("mContact", "Contact Details", "/admin/contact.html", path);

} // func setupMenuArray
