<!-- Begin
	// Set slideShowSpeed (milliseconds)
	var slideShowSpeed = 3000;
	// Duration of crossfade (seconds)
	var crossFadeDuration = 3;
	// Specify the image files
	
	var t;
	var j = 0;
	var HTML_Kep;
	var p;
	var preLoad;

	function showInditas( Pic, kepNeve )
	{
		setKepek(Pic);
		HTML_Kep = kepNeve;
		runSlideShow();
	}
	
	function setKepek(Pic)
	{
		p = Pic.length;
		preLoad = new Array();
		for (i = 0; i < p; i++) 
		{
			preLoad[i] = new Image();
			preLoad[i].src = Pic[i];
		}
	}
	
	function runSlideShow() 
	{
		if (document.all) 
		{
			HTML_Kep.style.filter="blendTrans(duration=2)";
			HTML_Kep.style.filter="blendTrans(duration=crossFadeDuration)";
			HTML_Kep.filters.blendTrans.Apply();
		}
		
		HTML_Kep.src = preLoad[j].src;
		if (document.all) 
			HTML_Kep.filters.blendTrans.Play();

		j = j + 1;
		if (j > (p - 1)) 
			j = 0;
		
		t = setTimeout('runSlideShow()', slideShowSpeed);
	}
	
	
//  End -->






















