menusmono = new Array( );
menusmono[0] = "ジャンルを選択してください";
menusmono[1] = "■イギリス関連";
menusmono[2] = "■アメリカ関連";
menusmono[3] = "■その他英米文学研究";
menusmono[4] = "■翻訳";
menusmono[5] = "■英語学・言語学関係";
menusmono[6] = "■論文集";
menusmono[7] = "■英文";
menusmono[8] = "■教育";
menusmono[9] = "■その他のジャンル";



// リンク先アドレスの配列 addressmono を設定
addressmono = new Array( );
addressmono[1] = "monograph/monograph-genre-01/index.html";
addressmono[2] = "monograph/monograph-genre-02/index.html";
addressmono[3] = "monograph/monograph-genre-03/index.html";
addressmono[4] = "monograph/monograph-genre-04/index.html";
addressmono[5] = "monograph/monograph-genre-05/index.html";
addressmono[6] = "monograph/monograph-genre-06/index.html";
addressmono[7] = "monograph/monograph-genre-07/index.html";
addressmono[8] = "monograph/monograph-genre-08/index.html";
addressmono[9] = "monograph/monograph-genre-09/index.html";


deflt = document.URL;
slctd = 0; // 初期表示させたいインデクス値を設定。デフォルトは 0
pageName = "";

function setMenuMonograph() {
  with(document) {
    write("<FORM name='QuickMenu'><SELECT name='MenuList' onChange='location.href=addressmono[this.selectedIndex]'>");
    for(i = 0; i < menusmono.length; i++) {
      if(deflt.indexOf(addressmono[i], 0) < 0)
      write("<OPTION value='" + menusmono[i] + "'>" + menusmono[i]);
      else pageName = menusmono[i];
    }
    write("</SELECT>");
    write("</FORM>");
    QuickMenu.MenuList.options[slctd].selected = true;
  }

  // 以下はリストのデザイン設定
  with(QuickMenu.MenuList.style) {
    width ="215px";
	backgroundColor = "#fffae5"; // 背景色
    color = "#333333"; // 文字色
    fontSize = "9pt"; // フォントサイズ
  }

} // ここまで 