// 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/Zakynthos/Billedhjul/01Smugglers_Wreck_501x334px_crop.JPG'
Pic[1] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/CSC_0277.jpg'
Pic[2] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/DSC_0175.jpg'
Pic[3] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/DSC_0280.jpg'
Pic[4] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/EBlue_Caves_450x453px_crop.JPG'
Pic[5] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/parasollerzakynthos_505x336px_crop.jpg'
Pic[6] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/ZakynthosTORV_499x334px_crop.jpg'
Pic[7] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/Zak_minipadde_450x336px_crop.JPG'
Pic[8] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/Zak_oe_502x334px_crop.JPG'
Pic[9] = '/files/Billeder/Rejsemaal/Zakynthos/Billedhjul/Zak_strand1_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)
}


