size = "width=600 height=198";  // 画像の表示サイズを記述（HTML書式）
r_time = 5000;       // 画像を切り替える時間をミリ秒で記述（1秒 = 1000ミリ秒）

url = new Array();
img = new Array();

/* リンク先とそのバナーを記述 */
url[0] = "eddie.php"; img[0] = "http://ad-northshore.com/onlineshop/files/swf/image/34.jpg";
url[1] = "triplecrown.php"; img[1] = "http://ad-northshore.com/onlineshop/files/swf/image/35.jpg";

img2 = new Array();
for (i in img) {
   img2[i] = new Image();
   img2[i].src = img[i];
}

function img_change() {
   p = Math.round(Math.random()*(url.length - 1));
   document.pos.src = img2[p].src;
   setTimeout("img_change()",r_time);
}

function jump() {
   window.top.document.location = "./"+url[p];
}

DOC = '<a href="" onClick="jump(); return false"><img name=pos '+size+' border=0></a>';
