<!--
var the_images = new Array();
the_images[0] = new Image();
the_images[0].src = "images/1.jpg";
the_images[1] = new Image();
the_images[1].src = "images/a.jpg";
the_images[2] = new Image();
the_images[2].src = "images/2.jpg";
the_images[3] = new Image();
the_images[3].src = "images/b.jpg";
the_images[4] = new Image();
the_images[4].src = "images/3.jpg";
the_images[5] = new Image();
the_images[5].src = "images/c.jpg";
the_images[6] = new Image();
the_images[6].src = "images/4.jpg";
the_images[7] = new Image();
the_images[7].src = "images/d.jpg";
the_images[8] = new Image();
the_images[8].src = "images/5.jpg";
the_images[9] = new Image();
the_images[9].src = "images/e.jpg";
the_images[10] = new Image();
the_images[10].src = "images/6.jpg";
the_images[11] = new Image();
the_images[11].src = "images/f.jpg";
the_images[12] = new Image();
the_images[12].src = "images/7.jpg";
the_images[13] = new Image();
the_images[13].src = "images/g.jpg";

var the_timeout;
var index=0;

function rotateImage()
	{
		var the_function_string = "rotateImage();";	
		
		window.document.my_image.style.filter="blendTrans(duration=crossFadeDuration)";
		window.document.my_image.filters.blendTrans.Apply();
		

		window.document.my_image.src = the_images[index].src;
		window.document.my_image.filters.blendTrans.Play();

		index++;
		if(index>=the_images.length) index=0;
		the_timeout = setTimeout(the_function_string, 2000);
	}
-->
