// random
img = new Array();
alt = new Array();

// img
img[0] = "http://www.orthokera.net/img/cl/cl_bnr01.jpg";
img[1] = "http://www.orthokera.net/img/cl/cl_bnr_kob01.jpg";

// alt
alt[0] = "成城クリニック";
alt[1] = "小林眼科";

n = Math.floor(Math.random()*img.length);
document.write("<img src='"+img[n]+"' width='489' height='105' alt='"+alt[n]+"' />");
