// Set slideShowSpeed (milliseconds)
		var slideShowSpeed = 4000
		
		// Duration of crossfade (seconds)
		var crossFadeDuration = 3
		
		var Pic = new Array() 
		/*Pic[0] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_PRESS07EV1-001314_390_146.jpg'
		Pic[1] = 'http://www.caravan-zellerer.de/laika-fotos/INT_X 595 C-028526_390_146.jpg'
		Pic[2] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_PRESS07X595C-001456_390_146.jpg' 
		Pic[3] = 'http://www.caravan-zellerer.de/laika-fotos/LAIKAREXOSLINE722-048_390_146.jpg' 
		Pic[4] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_PRESSX700-001408_390_146.jpg'
		Pic[5] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_REXOSLINE_L_390_146.jpg'*/
		
		

		Pic[0] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-KREOS-3003-EST.jpg'
		Pic[1] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-K-3002-009835.jpg'
		Pic[2] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-RXL-800L-005333.jpg'
	
		Pic[3] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-KREOS-3009-EST.jpg'
		Pic[4] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-GIORNALISTI-RXL-800-005375.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)
		}

