// ----- SCROLL --- //

function down(obj,mask){
	y = parseInt(obj.style.top);
	altura_obj = parseInt(obj.clientHeight);
	altura_mask = parseInt(mask.clientHeight);
	if(y >= (altura_mask - altura_obj))
	{
		obj.style.top = y-5+'px';
	}
}
function up(obj,mask){
	y = parseInt(obj.style.top);
	if(y+5 <= 0)
	{
		obj.style.top = y+5+'px';
	}
}

function left(obj,comp){

	x = parseInt(obj.style.left);
	leng = comp * (-72); // 72 por causa do tamanho da div / 576 que sao 8 thumbs por pagina
	if ( leng < x-445) {
		obj.style.left = x-10+'px';
	}
}

function right(obj, comp){
		x = parseInt(obj.style.left);
		if (x+10 < 10){
			obj.style.left = x+10+'px';
		}
}



//funcao para a paginacao das minifotos
/*function page(obj,pagina) {
	y = pagina*(-512);
	obj.style.left = y + 4 + 'px';
}*/

// - FIM SCROLL --- //
