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

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

/* リンク先とそのバナーを記述 */
url[0] = "woodsign/custom/"; img[0] = "http://ad-northshore.com/onlineshop/files/swf/image/01.png";
url[1] = "heather.php"; img[1] = "http://ad-northshore.com/onlineshop/files/swf/image/17.jpg";
url[2] = "home/switch/"; img[2] = "http://ad-northshore.com/onlineshop/files/swf/image/03.jpg";
url[3] = "kokua.php"; img[3] = "http://ad-northshore.com/onlineshop/files/swf/image/04.jpg";
url[4] = "home/grocery/stu-0004-01.php"; img[4] = "http://ad-northshore.com/onlineshop/files/swf/image/05.jpg";
url[5] = "bag/handomadebag/"; img[5] = "http://ad-northshore.com/onlineshop/files/swf/image/18.jpg";
url[6] = "spam.php"; img[6] = "http://ad-northshore.com/onlineshop/files/swf/image/07.jpg";
url[7] = "vintage.php"; img[7] = "http://ad-northshore.com/onlineshop/files/swf/image/08.jpg";
url[8] = "cosme/malie/"; img[8] = "http://ad-northshore.com/onlineshop/files/swf/image/10.png";
url[9] = "kokua.php"; img[9] = "http://ad-northshore.com/onlineshop/files/swf/image/19.jpg";
url[10] = "heather.php"; img[10] = "http://ad-northshore.com/onlineshop/files/swf/image/12.jpg";
url[11] = "fabric/cover/"; img[11] = "http://ad-northshore.com/onlineshop/files/swf/image/15.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>';