jumpURL = new Array();
imgURL  = new Array();
imgALT  = new Array();

jumpURL[0] = "/gundam30th_nagoya/dvd/";
imgURL[0]  = "/nadeshiko_banners/gundam30th_dvd_728_90_2.jpg";
imgALT[0]  = "「機動戦士ガンダム」生誕30周年イベントDVD-BOX発売決定！";

jumpURL[1] = "/arukotonaikoto/";
imgURL[1]  = "/banner/arukotonaikoto_regular(728_90).jpg";
imgALT[1]  = "キングコングのあるコトないコト";

n = Math.floor(Math.random()*jumpURL.length);
document.write("<a href='"+jumpURL[n]+"'>");
document.write("<img src='"+imgURL[n]+"' border='0' width='728' height='90' alt='"+imgALT[n]+"' />");
document.write("</a>");
