   var imglist = [
      [ "http://marinbo.com/img/index/random_images/random01.jpg", "", "http://marinbo.com/weddingveil/veil-all.html" ] ,
      [ "http://marinbo.com/img/index/random_images/random02.jpg", "", "http://shop3.genesis-ec.com/search/list.asp?shopcd=17379&itemgrp1cd=104" ] ,
      [ "http://marinbo.com/img/index/random_images/random03.jpg", "", "http://shop3.genesis-ec.com/search/list.asp?shopcd=17379&itemgrp1cd=100&itemgrp2cd=100&sort=itemkb10" ] ,
      [ "http://marinbo.com/img/index/random_images/random04.jpg", "", "http://shop3.genesis-ec.com/search/list.asp?shopcd=17379&itemgrp1cd=100&itemgrp2cd=101&sort=itemkb10" ] ,
      [ "http://marinbo.com/img/index/random_images/random05.jpg", "", "http://shop3.genesis-ec.com/search/list.asp?shopcd=17379&itemgrp1cd=103&sort=itemkb10" ] 
	  ];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);
   }
