			var running = true;		
			
			
			// Slide show yap
			if (Resimler.length != 0) {
				var slideShowSpeed = 3000; //milliseconds
				var crossFadeDuration = 3; //seconds
				var t;
				var j = 0;
				var p = Resimler.length;
				var preLoad = new Array();
				for (i = 0; i < p; i++){
					preLoad[i] = new Image();					
					preLoad[i].src = "urunler/" + Resimler[i];					
					
				}
			}
			
			function runSlideShow(){
				if (Resimler.length != 0) {
					if (running) {
						if (document.all){
							document.images.imgAnaResim.style.filter = 'blendTrans(duration = 2)';
							document.images.imgAnaResim.style.filter = 'blendTrans(duration = crossFadeDuration)';
							document.images.imgAnaResim.filters.blendTrans.Apply()      
						}
						BgColorReset();
						document.images.imgAnaResim.src = preLoad[j].src;
						document.getElementById("dlResimler__ctl" + j + "_tblKucukResim").style.backgroundColor = '#FEFFF9';
						if (document.all)
							document.images.imgAnaResim.filters.blendTrans.Play();
						j = j + 1
						if (j > (p-1)) j=0
						t = setTimeout('runSlideShow()', slideShowSpeed)
					}				
				}	
			}
			
			// Küçük resimlerin arka plan rengini resetle
			function BgColorReset() {
				var p = Resimler.length;
				for (i = 0; i < p; i++){
					document.getElementById("dlResimler__ctl" + i + "_tblKucukResim").style.backgroundColor = '#000';	
				}
			}