var j = 0;
var image_rotate = new Array();

function rotate_images() {
	tempobj = document.all ? eval("document.all.img_rotate") : document.getElementById('img_rotate');
	if(document.all) {
		tempobj.style.filter="blendTrans(duration=1)";
		tempobj.filters.blendTrans.Apply();
	}
	tempobj.src = image_rotate[j].src;
	if(document.all) {
		tempobj.filters.blendTrans.Play();
	}
	j = j + 1;
	if (j>(image_rotate.length - 1)) {
		j = 0;
	}
	setTimeout('rotate_images()', 7000);
}

