// JavaScript Document

var imglist = [
      [ "http://gourmet.moshi2.net/images/topbnr09102601.jpg", "", "http://www.esz.co.jp/public/kodomo08.html" ] ,
      [ "http://gourmet.moshi2.net/images/topbnr09102602.jpg", "", "http://www.esz.co.jp/public/kodomo08.html" ] ,
	  [ "http://gourmet.moshi2.net/images/topbnr09102603.jpg", "", "http://www.esz.co.jp/public/kodomo08.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>' +
      imglist[selectnum][1] + '</a>';
   document.write(output);
}
