
// For TopBanner - Start
var Homespeed = 6000  //圖片切換時間
var Homeimg= new Array()
var Homeurl= new Array()
var Homecurrent = 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"


Homeimg=new Array()
for(i=1; i<10; i++){　//數字6,但圖片編號為１~5
Homeimg[i]=new Image()
Homeimg[i].src="http://www.touch.net.hk/clubtouch/fashion/images/product/HomePic/Touch0"+i+".jpg"　　//連續圖檔的前置檔名,可自行更改
}
Homeurl[1] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_Vivazpro_fea.asp"
Homeurl[2] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_X10mini_fea.asp"
Homeurl[3] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_X10_fea.asp" 
Homeurl[4] = "http://www.touch.net.hk/clubtouch/fashion/MissSixtySE.asp" 
Homeurl[5] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_Vivaz_fea.asp" 
Homeurl[6] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_J10_fea.asp"
Homeurl[7] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_Satio_fea.asp" 
Homeurl[8] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_Aino_fea.asp" 
Homeurl[9] = "http://www.touch.net.hk/clubtouch/fashion/mobile_s_Yari_fea.asp" 

function Homestart() 
{
Homecurrent++
if(Homecurrent >=Homeimg.length) Homecurrent = 1
document.imgHome.src = Homeimg[Homecurrent].src
setTimeout("Homestart()",speed);
}

function Homego() 
{

window.open (Homeurl[Homecurrent],"PopupWindow"); 
}
// For TopBanner - End
