var Intervalo = null;
var Destino = 0;
var tb = null;

function Ampliar(Arquivo){
	document.getElementById('ImgGrande').src = 'img/fotos/' + Arquivo;
}

function Rolar(){
	var x = (tb.style.left ? parseInt(tb.style.left) : 0);
	if(x != Destino){
		var Vel = Math.round((Destino-x)/5);
		if(Vel == 0){
			Vel = (Destino-x) > 0 ? 1 : -1;
		}
		x += Vel;
		tb.style.left = x + 'px';
	}else{
		clearInterval(Intervalo);
		Intervalo = null;
	}
}

function Mover(Direcao){
	if(!Intervalo){
		tb = document.getElementById('tbSlider');
		if(tb){
			var x = (tb.style.left ? parseInt(tb.style.left) : 0);
			if(!((Direcao == -1) && (x == 0))){
				var D = Destino;
				Destino += -900*Direcao;
				if(!((Direcao == 1) && (Math.abs(Destino) >= tb.width)))
					Intervalo = setInterval('Rolar()', 50);
				else
					Destino = D;
			}
		}
	}
	document.getElementById("divPosicao").innerHTML = Destino;
}

function MoverThumbPX(intPos){
	tb = document.getElementById('tbSlider');
	Destino = intPos;
	Intervalo = setInterval('Rolar()', 50);
}

function AbreThumb(strCaminho){
	posX = document.getElementById("divPosicao").innerHTML;
	strCaminho = strCaminho + '/' + posX;
	document.location.href = strCaminho;
}
 
