var images = {
        // 画像とジャンプ先の URL のペア
        url : [
          ['/e/common/images/bnr_company01.gif', '/e/G-link/hansha/HL-11256.html','SBI証券'],
          ['/e/common/images/bnr_company02.gif', '/e/G-link/hansha/HL-12057.html','楽天証券'],
          ['/e/common/images/bnr_company03.gif', '/e/G-link/hansha/HL-11060.html','カブドットコム証券'],
          ['/e/common/images/bnr_company04.gif', '/e/G-link/hansha/HL-12330.html','マネックス証券'],
          ['/e/common/images/bnr_company05.gif', '/e/G-link/hansha/HL-99901.html','日興コ−ディアル証券（投信スーパーセンター）'],
          ['/e/common/images/bnr_company06.gif', '/e/G-link/hansha/HL-00033.html','ジャパンネット銀行']
          ],

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

        p : 0, // 表示画像のポインタ

        // 画像表示
        put : function() {
          document.write('<a href="'+this.url[this.p][1]+'" target="_blank"><img src="'+this.url[this.p][0]+'" alt="'+this.url[this.p++][2]+'"/></a>') ;
          if (this.p >= this.url.length) this.p = 0 ;
        }
      } ;

      images.shuffle() ;
