function initImages()
{
	for (var i = 0; i < Math.min(2, imagesFeatured.length); i++)
	{
		setImage(i, imagesFeatured[i]);
	}
	setTimeout("fadeNext(0)", 4000);
	setTimeout("fadeNext(1)", 4000);
}
var currentPhotoIndex = 1;
function setImage(index, value)
{
	document.getElementById("imgFeatured" + index).src = "/cms/controller/services/Thumbnail.ashx?height=130&width=190&fileName=/media/sanborn_photo.photo/" + value;
}

function fadeNext(index)
{
	$("#imgFeatured" + index).fadeOut("slow", function(e) {
		if (index == 1)
		{
			currentPhotoIndex++;
			if (currentPhotoIndex >= imagesFeatured.length)
			{
				currentPhotoIndex = 0;
			}
		}
		setImage(index, imagesFeatured[currentPhotoIndex]);
		$("#imgFeatured" + index).fadeIn("slow");
		setTimeout("fadeNext(" + index + ")", 4000);
	});
}
