   // 画像・URLリストを配列で作る
   var imglist2 = [
      [ "レッド　","#ea5550" ] ,
      [ "ブルー　","#0075c2" ] ,
      [ "グリーン　","#00a960" ] ,
      [ "ピンク　","#f5b2b2" ] ,
      [ "オレンジ　","#ee7800" ] ,
      [ "ブラウン　","#8f6552" ] ,
      [ "ブラック　","#000000" ] ,
//
      [ "あずき色　","#96514d" ] ,
      [ "ゴールド　","#ffd700" ] ,
      [ "シルバー　","#c9caca" ] ,
      [ "ホワイト　","#FFFFFF" ] ,
      [ "黄緑色　","#adff2f" ] ,
      [ "モスグリーン　","#777e41 " ] ,
      [ "インディゴ　","#043c78" ] ,
      [ "桜色　","#fef4f4" ] ,
      [ "栗色　","#762f07" ] ,
      [ "桃色　","#f09199" ] ,
      [ "シャンパン　","#e9dacb" ] ,
      [ "コバルトブルー　","#0068b7" ] ,
      [ "緋色　" ,"#d3381c" ] ,
      [ "オリーブ　","#72640c" ] ,
      [ "ボルドー　","#6c272d" ] ,
      [ "イエロー　","#ffdc00" ] ,
      [ "あずき色　","#96514d" ] ,
      [ "ゴールド　","#ffd700" ] ,
//
      [ "グレー　","#808080" ] ,
      [ "イエロー　","#ffdc00" ] ,
      [ "あずき色　","#96514d" ] ,
      [ "ゴールド　","#ffd700" ] ,
      [ "シルバー　","#c9caca" ] ,
      [ "ホワイト　","#FFFFFF" ] ,
      [ "黄緑色　","#adff2f" ] ,
      [ "やまぶき色　","#f8b500" ] ,
      [ "ワインレッド　","#b33e5c" ] ,
      [ "モスグリーン　","#777e41 " ] ,
      [ "インディゴ　","#043c78" ] ,
      [ "桜色　","#fef4f4" ] ,
      [ "栗色　","#762f07" ] ,
      [ "桃色　","#f09199" ] ,
      [ "シャンパン　","#e9dacb" ] ,
      [ "オフホワイト　","#fffaf0" ] ,
      [ "サックスブルー　","#418b89" ] ,
      [ "うぐいす色　","#928c36" ] ,
      [ "あさぎ色　","#00a3af" ] ,
      [ "ターコイズブルー　","#00afcc" ] ,
      [ "ベビーピンク　","#fdede4" ] ,
      [ "コバルトブルー　","#0068b7" ] ,
      [ "緋色　" ,"#d3381c" ] ,
      [ "オリーブ　","#72640c" ] ,
      [ "ボルドー　","#6c272d" ] ,
      [ "ラベンダー　","#cab8d9" ] ,
      [ "アップルグリーン　","#a7d28d" ] ,
      [ "スカイブルー　","#a0d8ef" ] //注
   ];

   // 1つ選んで表示する関数
   function DailyImageLink2() {
      // 日付を元にどれか1つを選ぶ
      var selectnum = Math.floor(((new Date()).getTime()+1000*60*60*9) / (1000*60*60*24)) % imglist2.length; 
      // 画像とリンクを生成
      var output = 
	'<font color="' + imglist2[selectnum][1] + '">' + '■'　
+ '</font>' +imglist2[selectnum][0] ;
      // 生成したHTMLを出力
      document.write(output);
   }


   // 1つ選んで表示する関数
   function DailyImageLink6() {
      // 日付を元にどれか1つを選ぶ
      var selectnum = Math.floor(((new Date()).getTime()+1000*60*60*9) / (1000*60*60*24)+13) % imglist2.length; 
      // 画像とリンクを生成
      var output = 
	'<font color="' + imglist2[selectnum][1] + '">' + '■'　
+ '</font>' +imglist2[selectnum][0] ;
      // 生成したHTMLを出力
      document.write(output);
  }


   // 1つ選んで表示する関数
   function DailyImageLink7() {
      // 日付を元にどれか1つを選ぶ
      var selectnum = Math.floor(((new Date()).getTime()+1000*60*60*9) / (1000*60*60*24)+5) % imglist2.length; 
      // 画像とリンクを生成
      var output = 
	'<font color="' + imglist2[selectnum][1] + '">' + '■'　
+ '</font>' +imglist2[selectnum][0] ;
      // 生成したHTMLを出力
      document.write(output);
   }


   // 1つ選んで表示する関数
   function DailyImageLink8() {
      // 日付を元にどれか1つを選ぶ
      var selectnum = Math.floor(((new Date()).getTime()+1000*60*60*9) / (1000*60*60*24)+9) % imglist2.length; 
      // 画像とリンクを生成
      var output = 
	'<font color="' + imglist2[selectnum][1] + '">' + '■'　
+ '</font>' +imglist2[selectnum][0] ;
      // 生成したHTMLを出力
      document.write(output);
   }
// 
