var cenas = new Array();
var cenaImg = null;
var cenaImgInterval = 0;

function CenasFotosAdd(cenaID, fotosArray){
	var pos = cenas.length;
	cenas[pos] = new Object();
	cenas[pos].ID = cenaID;
	cenas[pos].Fotos = fotosArray;
	cenas[pos].FotoShow = 0;
}

function CenaFotoShow(img, pos){
	cenaImg = img;
	cenaImgInterval = setInterval("CenaFotoShowTimer("+pos+");", 1000);
}

function CenaFotoShowTimer(pos){
	if(cenas[pos].FotoShow >= (cenas[pos].Fotos.length - 1)){
		cenas[pos].FotoShow = 0;
	} else {
		cenas[pos].FotoShow ++;
	}
	cenaImg.src = "Prs/Img/IUSR/Ft/Up/Dvd/Cena/"+cenas[pos].ID+"/Icone/"+cenas[pos].Fotos[cenas[pos].FotoShow];
}

function CenaFotoShowOff(img, pos){
	cenaImg = null;
	clearInterval(cenaImgInterval);
	cenas[pos].FotoShow = 0;
	img.src = "Prs/Img/IUSR/Ft/Up/Dvd/Cena/"+cenas[pos].ID+"/Icone/"+cenas[pos].Fotos[0];
}