
var globalCnt=0;
var glFoto;
var glTxt;
var topper=0;
var realWidth=0;
var parentWidth=0;


function pause()
{
	return 0;
}

function FotoSelection(foto,ttl)
{
	document.all.imgLayer.style.display="none";
	document.all.imgprogr.style.display="block";
	pic = new Image();
	pic.src="img/foto/large/"+foto;
	pic.onload = SelectedShow;
	glFoto = foto;
	glTxt = ttl;
}


function SelectedShow()
{
	document.all.mainfoto.src="img/foto/large/"+glFoto;
	document.all.maintitle.innerText=glTxt;

	document.all.imgLayer.style.display="block";
	document.all.imgprogr.style.display="none";
}


function rollRecursRight()
{

	if(topper>=(parentWidth-realWidth))
	{
		document.getElementById('thumbList').style.left=topper-=2;
	}
}


function rollRecursLeft()
{
	if(topper<0)
	{
		document.getElementById('thumbList').style.left=topper+=2;
	}
}
