<!--
function preLoadPic(index)
{
  if (Pic[index] != ''){
    window.status='Loading : '+Pic[index]
	preLoad[index] = new Image()
    preLoad[index].src = Pic[index]
    Pic[index] = ''
    window.status=''
  }
}

function runSlideShow(){
	 if (xIE4Up){
	  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
	 if (xIE4Up){
	   document.images.SlideShow.filters.blendTrans.Play()
	 }
	
	 pos = j
	
	 j = j + 1
	 if (j > (p-1)) j=0
	 t = setTimeout('runSlideShow()', slideShowSpeed)
	 preLoadPic(j)
}
	
//-->
