// This script is dynamically generated from this script /articlebasic/aarhuscharter/image_fade_slide.asp
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000
// Duration of crossfade (seconds)
var crossFadeDuration = 3
var Pic = new Array() // don't touch this
Pic[0] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_0551_503x334px_crop1.JPG'
Pic[1] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_0571_503x334px_crop2.JPG'
Pic[2] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_0586_503x334px_crop3.JPG'
Pic[3] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_0605_503x334px_crop.JPG'
Pic[4] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_0967_503x334px_crop4.JPG'
Pic[5] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_5382_504x334px_crop.JPG'
Pic[6] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_5484_504x334px_crop.JPG'
Pic[7] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_5549_504x334px_crop.JPG'
Pic[8] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/DSC_5578_504x334px_crop.JPG'
Pic[9] = '/files/Billeder/Rejsemaal/Santorini/Billedhjul/IMG_3364_450x337px_crop.JPG'
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
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}


