// JavaScript Document
   // 画像・URLリストを配列で作る
   var imglist = [
      [ "images/top/top-eye_01.jpg", "和十とは？", "http://wa10.jp/temple/concept.html" ] ,
      [ "images/top/top-eye_02.jpg", "わかりやすい制作プランが全国のご住職様に大好評です", "homepage/make-service.html" ] ,
      [ "images/top/top-eye_03.jpg", "プロのデザイナーが創り出す珠玉の雛型", "homepage/template.html" ] ,
      [ "images/top/top-eye_04.jpg", "和十は全国初のご寺院様のホームページ制作専門店です", "temple/strong.html" ] //注
   ];

   // ランダムに1つ選んで表示する関数
   function RandomImageLink() {
      // どれか１つ選ぶ
      var selectnum = Math.floor(Math.random() * imglist.length);
      // 画像とリンクを生成
      var output =
         '<a href="' + imglist[selectnum][2] + '">' +
         '<img src="' + imglist[selectnum][0] + '"' +
         ' alt="' + imglist[selectnum][1] + '">' +
         '</a>';
      // 生成したHTMLを出力
      document.write(output);
   }

