 var Graya = document.he.hid1.value
 var Grayb = document.he.hid2.value
 var Grayc = document.he.hid3.value
 var Grayd = document.he.hid4.value
 var Graye = document.he.hid5.value
 var Grayf = document.he.hid6.value
 var Grayg = document.he.hid7.value
 var Grayh = document.he.hid8.value
 var Grayi = document.he.hid9.value
 var Grayj = document.he.hid10.value
 var Grayk = document.he.hid11.value
 var Graym = document.he.hid12.value
 var slideShowSpeed = document.he.hid13.value
 var crossFadeDuration = 3
 var Pic = new Array()
 Pic[0] = Graya
 Pic[1] = Grayb
 Pic[2] = Grayc
 Pic[3] = Grayd
 Pic[4] = Graye
 Pic[5] = Grayf
 Pic[6] = Grayg
 Pic[7] = Grayh
 Pic[8] = Grayi
 Pic[9] = Grayj
 Pic[10] = Grayk
 Pic[11] = Graym
 var t
 var j = 0
 var p = Pic.length
 var preLoad = new Array()
  function FunSlideShow(){
	for (i = 0; i < p; i++){
   		preLoad[i] = new Image()
   		preLoad[i].src = Pic[i]
	}

   	if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=3)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   	}
   	document.images.SlideShow.src = preLoad[j].src
   	if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   	}
   	j = j + 1
   	if (j > (p-1)) j=0
   	t = setTimeout('FunSlideShow()', slideShowSpeed)
  }
