// Set slideShowSpeed (milliseconds)
		var slideShowSpeed = 4000
		
		// Duration of crossfade (seconds)
		var crossFadeDuration = 3
		
		var Pic = new Array() 
		/*Pic[0] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026815_390_146.jpg'
		Pic[1] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026808_390_146.jpg'
		Pic[2] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_PRESS07EV1-001314_390_146.jpg'
		Pic[3] = 'http://www.caravan-zellerer.de/laika-fotos/INT_X 595 C-028526_390_146.jpg'
		Pic[4] = 'http://www.caravan-zellerer.de/globecar-fotos/ROADSCOUT LANDSCHAFT 2_390_146.jpg'
		Pic[5] = 'http://www.caravan-zellerer.de/globecar-fotos/GLO_SCOU_STY_FIA_DURCH_390_146.jpg'
		Pic[6] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026819_390_146.jpg' 
		Pic[7] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026834_390_146.jpg' 
		Pic[8] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026820_390_146.jpg'
		Pic[9] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026877_390_146.jpg'
		Pic[10] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_PRESS07X595C-001456_390_146.jpg' 
		Pic[11] = 'http://www.caravan-zellerer.de/laika-fotos/LAIKAREXOSLINE722-048_390_146.jpg' 
		Pic[12] = 'http://www.caravan-zellerer.de/globecar-fotos/STYLE IN LANDSCHAFT_390_146.jpg' 
		Pic[13] = 'http://www.caravan-zellerer.de/globecar-fotos/GLOB_FAMSCOUT_REN_BETT_390_146.jpg' 
		Pic[14] = 'http://www.caravan-zellerer.de/globecar-fotos/TRENDSCOUT IN LANDSCHAFT-390_146.jpg' 
		Pic[15] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026862_390_146.jpg'
		Pic[16] = 'http://www.caravan-zellerer.de/fendt-fotos/fc0026875_390_146.jpg'
		Pic[17] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_PRESSX700-001408_390_146.jpg'
		Pic[18] = 'http://www.caravan-zellerer.de/laika-fotos/EXT_REXOSLINE_L_390_146.jpg'*/
		
		Pic[0] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/fendt_PLATIN_4.jpg'
		Pic[1] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Fendt_SAPHIR_540_TK_INNEN.jpg'
		Pic[2] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/fendt_k_mobil_2.jpg'
		Pic[3] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-KREOS-3003-EST.jpg'
		Pic[4] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-K-3002-009835.jpg'
		Pic[5] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-RXL-800L-005333.jpg'
		Pic[6] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/globecar-GLOBE-ROADSCOUT.jpg'
		Pic[7] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/globecar-GLOBE-VARIO.jpg'
		Pic[8] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/globecar_vario_2.jpg'
		Pic[9] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/fendt-TI_DURCHBLICK_S.jpg'
		Pic[10] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/globecar-GLOBE-GLOBESCOUT-HECK.jpg'
		Pic[11] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/fendt-TI.jpg'
		Pic[12] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Fendt_STYLE_SAPHIR_470_PRESSE.jpg'
		Pic[13] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-KREOS-3009-EST.jpg'
		Pic[14] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Laika-GIORNALISTI-RXL-800-005375.jpg'
		Pic[15] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Fendt_STYLE_1169_PRESSE.jpg'
		Pic[16] = 'http://www.caravan-zellerer.de/globecar-fendt-laika-09/Fendt_STYLE_S.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)
		}

