
// For TopBanner - Start
var speed = 5000  //圖片切換時間
var img= new Array()
var url= new Array()
var current = 0

//一張圖片對應一個網址,可無限增加,編號由0開始
//img[0] = new Image(); img[0].src = "icon1.gif"; url[0] = "http://hk.yahoo.com" 
//img[1] = new Image(); img[1].src = "icon2.gif"; url[1] = "http://www.google.com"
//img[2] = new Image(); img[2].src = "icon3.gif"; url[2] = "http://hk.msn.com"


img=new Array()
for(i=1; i<5; i++){　//數字５,但圖片編號為１~４
img[i]=new Image()
img[i].src="http://www.touch.net.hk/clubtouch/trend/Choiix/top_banner_choiix0"+i+".jpg"　//連續圖檔的前置檔名,可自行更改
}
url[1] = "http://www.touch.net.hk/clubtouch/trend/Choiix/choiix01.jpg" 
url[2] = "http://www.touch.net.hk/clubtouch/trend/Choiix/choiix02.jpg" 
url[3] = "http://www.touch.net.hk/clubtouch/trend/Choiix/choiix03.jpg" 
url[4] = "http://www.touch.net.hk/clubtouch/trend/Choiix/choiix04.jpg" 

function start() 
{
current++
if(current >=img.length) current = 1
document.imgs.src = img[current].src
setTimeout("start()",speed);
}

function go() 
{

window.open (url[current],"PopupWindow"); 
}
// For TopBanner - End
