       var images = {
        // 画像とジャンプ先の URL のペア
        url : [
['http://www.47news.jp/47topics/images/banner_tekuteku.jpg', 'http://www.47news.jp/localnews/tekuteku/', 'てくてくjapan'],
['http://www.47news.jp/47topics/images/sakura300_80.jpg', 'http://www.47news.jp/47topics/sakura/', '桜'],
['http://www.47news.jp/47topics/images/banner_japan_j.jpg', 'http://www.47news.jp/47topics/e/157460.php', '日本の実力'],
['http://www.47news.jp/47topics/images/banner_odekake02.jpg', 'http://www.47news.jp/localnews/odekake/', 'おでかけ'],
　['http://img.47news.jp/feature/test/banner/banner_gorin_mangekyo.jpg', 'http://www.47news.jp/sports/olympics/vancouver/columns/', '五輪万華鏡'],
　　['http://img.47news.jp/feature/test/banner/banner_chiikisaisei.jpg', 'http://www.47news.jp/localnews/chiikisaisei/', '地域再生'],
　　['http://img.47news.jp/feature/test/banner/banner_sake.jpg', 'http://www.47news.jp/feature/sake/', '日本酒　津々浦々'],
　　['http://img.47news.jp/feature/test/banner/saiban_banner_orange.jpg', 'http://www.47news.jp/feature/saibanin/47news/', '裁判員制度'],
    ['http://img.47news.jp/feature/test/banner/banner_shinkan1.jpg', 'http://www.47news.jp/topics/entertainment/book.php', '新刊レビュー'],
    ['http://img.47news.jp/feature/test/banner/banner_shinkan2.jpg', 'http://www.47news.jp/topics/entertainment/book.php', '新刊レビュー'],
    ['http://img.47news.jp/feature/test/banner/banner_shinkan3.jpg', 'http://www.47news.jp/topics/entertainment/book.php', '新刊レビュー'],
    ['http://img.47news.jp/feature/test/banner/banner_yama.jpg', 'http://www.47news.jp/localnews/mountain/', '山への誘い'],
    ['http://img.47news.jp/feature/test/banner/banner_yama2.jpg', 'http://www.47news.jp/localnews/mountain/', '山への誘い'],
    ['http://img.47news.jp/feature/test/banner/banner_woman_eye.jpg', 'http://www.47news.jp/feature/woman/womaneye/', 'ウーマンアイ'],
    ['http://img.47news.jp/feature/test/banner/kanji_banner_pink.png', 'http://www.47news.jp/feature/47school/kanji/index.php', '漢字物語'],
    ['http://img.47news.jp/feature/test/banner/kanji_banner_green.png', 'http://www.47news.jp/feature/47school/kanji/index.php', '漢字物語'],
    ['http://img.47news.jp/feature/test/banner/kanji_banner_blue.png', 'http://www.47news.jp/feature/47school/kanji/index.php', '漢字物語'],
    ['http://img.47news.jp/feature/test/banner/banner_kodomomirai.jpg', 'http://www.47news.jp/service/kosodate/', 'こども未来財団　子育て支援サイト'],
    ['http://img.47news.jp/feature/test/banner/banner_araki.jpg', 'http://www.47news.jp/araki/', 'アラーキーの幸福写真'],
    ['http://img.47news.jp/feature/test/banner/banner_fuji.jpg', 'http://www.47news.jp/culture/fujitv/index.php', 'お先にフジテレビ'],
    ['http://img.47news.jp/feature/test/banner/banner_cinema.jpg', 'http://www.47news.jp/topics/entertainment/cinema.php', '花まるシネマ'],
    ['http://img.47news.jp/feature/test/banner/banner_marty.jpg', 'http://www.47news.jp/topics/entertainment/marty_index.php', 'マーティー'],
    ['http://img.47news.jp/feature/test/banner/banner_ikimono.jpg', 'http://www.47news.jp/feature/47school/ikimono/index.php', '生き物'],
    ['http://img.47news.jp/feature/test/banner/banner_odekake.jpg', 'http://www.47news.jp/localnews/odekake/', 'おでかけ']
          ],

        // 順番のシャッフル
        shuffle : function() {
          for (i = this.url.length; i > 0; --i) {
            tmp = this.url[p = Math.floor(Math.random()*this.url.length)] ;
            this.url[p] = this.url[i-1] ;
            this.url[i-1] = tmp ;
          }
        },

        p : 0, // 表示画像のポインタ
       
        // 画像表示
        put : function() {
          document.write('<div style="padding-top:5px;"><a href="'+this.url[this.p][1]+'"><img src="'+this.url[this.p][0]+'" height="80" width="300"alt="'+this.url[this.p][2]+'" border="0"/></a></div>') ;
          if (this.p >= this.url.length) this.p = 0 ;
          this.p++;
        }
      } ;

      images.shuffle() ;

