

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array() 
var aid = new Array()
var pid = new Array()




Pic[0] = 'http://www.internad.hk/tcm/images/slidec01.jpg'
aid[0] = '93'
pid[0] = '19'



Pic[1] = 'http://www.internad.hk/tcm/images/slidec02.jpg'
aid[1] = '93'
pid[1] = '25'



Pic[2] = 'http://www.internad.hk/tcm/images/slidec03.jpg'
aid[2] = '93'
pid[2] = '31'



Pic[3] = 'http://www.internad.hk/tcm/images/slidec04.jpg'
aid[3] = '93'
pid[3] = '22'



Pic[4] = 'http://www.internad.hk/tcm/images/slidec01.jpg'
aid[4] = '93'
pid[4] = '2'



Pic[5] = 'http://www.internad.hk/tcm/images/slidec02.jpg'
aid[5] = '93'
pid[5] = '15'



Pic[6] = 'http://www.internad.hk/tcm/images/slidec03.jpg'
aid[6] = '93'
pid[6] = '21'



Pic[7] = 'http://www.internad.hk/tcm/images/slidec04.jpg'
aid[7] = '93'
pid[7] = '1'



Pic[8] = 'http://www.internad.hk/tcm/images/slidec01.jpg'
aid[8] = '93'
pid[8] = '27'



Pic[9] = 'http://www.internad.hk/tcm/images/slidec02.jpg'
aid[9] = '93'
pid[9] = '7'




//Pic[0] = 'http://www.internad.hk/tcm/images/slidec01.jpg'
//Pic[1] = 'http://www.internad.hk/tcm/images/slidec02.jpg'
//Pic[2] = 'http://www.internad.hk/tcm/images/slidec03.jpg'
//Pic[3] = 'http://www.internad.hk/tcm/images/slidec04.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()

for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){

   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
	//alert(document.all("SldLnk").href);
	document.all("SldLnk").href = 'javascript:show_photo(' + pid[j] + ',' + aid[j] + ');';

   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}


function show_photo(photo_id, album_id) {
	 var file_path="../photo_gallery.htm" + photo_id + "&album_id=" + album_id;
	 //alert(file_path);
	 window.open(file_path,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=640,height=600,top=5,left=5');
}
