﻿var imglist = [  
	  	  
	  [ "/biz/shared/rmb/img_rm01.jpg", "通信コストを削減！お得な法人ケータイ", "/biztop/bn_rm1.html" ] ,	 

      [ "/biz/shared/rmb/img_ws_201009.jpg", "FUSION GOL ウェブホスティングパッケージ 初期設定費・ドメイン登録料無料！", "/biztop/bn_whp0.html" ],

	  [ "/biz/shared/rmb/img_rm03.jpg", "御社の通信コストを見直しませんか。お得な法人ケータイ「楽天モバイル」のご案内", "/biztop/bn_rm3.html" ] 

	   ];

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] + '"><br>' + '</a>';
   // 
   document.write(output);
}
