// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 10

// Specify the image files
var Bild = new Array()
var Spruch = new Array()

// =======================================
// do not edit anything below this line
// =======================================
var t
var j = 0

function runSlideShow(){
var p = Bild.length
	if (document.all){
      document.images.spruch_home.style.filter="blendTrans(duration=2)"
      document.images.spruch_home.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.spruch_home.filters.blendTrans.Apply() 
	  top.document.images.bild_home.style.filter="blendTrans(duration=2)"
      top.document.images.bild_home.style.filter="blendTrans(duration=crossFadeDuration)"
      top.document.images.bild_home.filters.blendTrans.Apply()      
   }
   document.images.spruch_home.src = Spruch[j]
   top.document.images.bild_home.src = Bild[j]
   if (document.all){
      document.images.spruch_home.filters.blendTrans.Play()
      top.document.images.bild_home.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
setTimeout('runSlideShow()', slideShowSpeed)