<!-- For browsers that don't interpret JavaScript  ＪＳファイルはこんなもんでどうでしょう
// 参照 submain index2 index3
function MakeArray(n) {
   this.length = n
   for (var i = 1; i <= n; i++) {
      this[i] = 0
   }
   return this
}
mnuList = new MakeArray(14)
//上のMakeArrayの次の()内の数字は下のリストの項目数と同じにする  
//OPTIONの順番通りにURLを下に書く
// メニューが１０以上ある場合はさらにmnuList[10] = ・・・と続けること
mnuList[1] = "index.html"
mnuList[2] = "homon.html"
mnuList[3] = "attion1.html"
mnuList[4] = "submain.html"
mnuList[5] = "ichiran.html"
mnuList[6] = "return.html"
mnuList[7] = "linen/index.html"
mnuList[8] = "jona/index.html"
mnuList[9] =  "hanna/index.html"
mnuList[10] = "craft/index.html"
//mnuList[11] = "ulster/index11.htm"
mnuList[11] = "fue/index.html"
mnuList[12] = "fue/m_video/index.html"
mnuList[13] = "cards/index.html"


mnuList2 = new MakeArray(3)
mnuList2[1] = "cookie/index.html"
mnuList2[2] = "cookie/index2.html"
mnuList2[3] = "cookie/index4.html"
mnuList2[4] = "cookie/index5.html"

function go() {
        var selected = document.linkMenu.linkList.selectedIndex
        if(selected > 0) {
                parent.location = mnuList[selected]
        }
}
function go2() {
        var selected = document.linkMenu2.linkList2.selectedIndex
        if(selected > 0) {
                parent.location = mnuList2[selected]
        }
}
// end of JavaScript -->
