var foto = new Array();
var fotos = 0;
var curfoto = 0;
function doneloading() {
	foto = myphotos.split("=");
	fotos = foto.length;
	document.getElementById("photo").src = "photos/" + foto[0];
	setTimeout("preloadimage()", 1000);
	document.title = "FUNTRACKERS - the Family Fun Center: " + mytitle;
}
function preloadimage() {
	curfoto++;
	if (curfoto > fotos - 1) curfoto = 0;
	document.getElementById("photobkg").style.background = "url(photos/" + foto[curfoto] + ") top left no-repeat";
	setTimeout("fading(100)", 3500);
}
function fading(v) {
	var f = document.getElementById("photo");
	f.style.opacity = v / 100;
	f.style.filter = "alpha(opacity=" + v + ")";
	if (v < 5) {
		f.src = "http://www.funtrackers.com/photos/" + foto[curfoto];
		f.style.opacity = 1;
		f.style.filter = "alpha(opacity=100)";
		setTimeout("preloadimage()", 1500);
	} else {
		v = v - 12;	//==== speed for fade
		setTimeout("fading(" + v + ")", 20);
}	}


