//menu objects

//added by justin 9/4/04

function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}
											
function loadMenus () {
    window.myMenu1 = new Menu("Editorial");
    myMenu1.addMenuItem("Editorial", "location='../docs/../docs/editorials.html'");
    myMenu1.addMenuItem("What's New, News and Notes", "location='../docs/WhatsNewNewsandNotes.html'");
    myMenu1.addMenuItem("Relations with ROK", "location='../docs/relationswithgovofkorea.html'");
    myMenu1.addMenuItem("History of the Project", "location='../docs/historyoftheproject.html'");
    myMenu1.addMenuItem("Dr. Drake's Bio", "location='../docs/drakebio.html'");
    
	myMenu1.disableDrag = true;

    window.myMenu2 = new Menu("Project Activities");
    myMenu2.addMenuItem("Dedication Ceremonies", "location='../docs/dedication.html'");
    myMenu2.addMenuItem("Completion of KWCM Pavilion", "location='../docs/completionofkwcmpavilion.html'");
    myMenu2.addMenuItem("Photo Exhibit", "location='../docs/photoexhibit.html'");
    myMenu2.addMenuItem("Book: GI's and the Kids", "location='../docs/gisandthekids.html'");
    myMenu2.addMenuItem("Certificate Distribution", "location='../docs/certificatedistribution.html'");
    myMenu2.addMenuItem("Mike Strang's Recognition", "location='../docs/mikestrangsrecognition.html'");
    myMenu2.disableDrag = true;

    window.myMenu3 = new Menu("Stories");
    myMenu3.addMenuItem("Saving Lives", "location='../docs/savinglives1.html'");
    myMenu3.addMenuItem("Kiddy Car Airlift", "location='../docs/kiddycarairlift.html'");
    myMenu3.addMenuItem("Feature Stories", "location='../docs/featurestories.html'");
    myMenu3.addMenuItem("Orphanages", "location='../docs/orphanages.html'");
    myMenu3.addMenuItem("Christmas Parties/Having Fun", "location='../docs/xmasparties.html'");
    myMenu3.addMenuItem("Adopting the Children", "location='../docs/adoption.html'");
    myMenu3.addMenuItem("Unit Stories", "location='../docs/unitstories.html'");
    myMenu3.addMenuItem("Help from Home", "location='../docs/helpfromhome.html'");
    myMenu3.addMenuItem("Culture Conflict and Orphanages", "location='../docs/cultureconflict.html'");
    myMenu3.disableDrag = true;

    window.myMenu4 = new Menu("Input");
    myMenu4.addMenuItem("Letters To The Editor", "location='../docs/letterstotheeditor.html'");
	myMenu4.addMenuItem("Letters to Korean War Veterans", "location='../docs/letterstoveterans.html'");
	myMenu4.addMenuItem("Orphans Letters to Servicemen", "location='../docs/orphansletters.html'");
	myMenu4.addMenuItem("Reader Stories and Photos", "location='../docs/readersstoriesandphotos.html'");
	myMenu4.addMenuItem("From the Internet", "location='../docs/fromtheinternet.html'");
	myMenu4.addMenuItem("'Help us Find' Results", "location='../docs/helpfindresults.html'");
    myMenu4.disableDrag = true;

    window.myMenu5 = new Menu("Get Involved");
    myMenu5.addMenuItem("Regarding Money", "location='../docs/moneymatters.html'");
    myMenu5.addMenuItem("Web Site Help", "location='../docs/websitedevelopment.htm'");
    myMenu5.addMenuItem("Publicity", "location='../docs/publicity.html'");
    myMenu5.addMenuItem("Photo Exhibit", "location='../docs/photoexhibit.html'");
	myMenu5.addMenuItem("Search for Persons", "location='../docs/searchfor.html'");
    myMenu5.disableDrag = true;

    myMenu5.writeMenus();
}

