      var images_teku = {
        // 画像とジャンプ先の URL のペア
        url : [
['http://img.47news.jp/47topics/images/earthquake_300.jpg', 'http://www.47news.jp/korean/earthquake/', 'ハングル']
          ],

        // 順番のシャッフル
        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_teku.shuffle() ;


