   var imglist = [
      [ "http://marinbo.com/rental/images/common/random_images/random01.jpg", "", "http://shop3.genesis-ec.com/search/result.asp?shopcd=17379&itemgrp1cd=109&itemgrp2cd=100" ] ,
      [ "http://marinbo.com/rental/images/common/random_images/random02.jpg", "", "http://shop3.genesis-ec.com/search/result.asp?shopcd=17379&itemgrp1cd=109&itemgrp2cd=102" ] ,
      [ "http://marinbo.com/rental/images/common/random_images/random03.jpg", "", "http://shop3.genesis-ec.com/search/result.asp?shopcd=17379&itemgrp1cd=109&itemgrp2cd=101" ] ,
      [ "http://marinbo.com/rental/images/common/random_images/random04.jpg", "", "http://shop3.genesis-ec.com/search/result.asp?shopcd=17379&itemgrp1cd=109" ] ,
        ];http://marinbo.com/accessories/weddingshawl/
   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>' +
         imglist[selectnum][1] + '</a>';
      document.write(output);
   }
