// JavaScript Document
var div=document.getElementById('slider_gal');
var tamanio=div.offsetHeight;
div.style.top='0pt';
var movimiento=0;
function up()
{
	aux=parseInt(div.style.top.substring(0,div.style.top.length-2));
	if(tamanio+aux>361)
	{
		aux-=10;
		div.style.top=aux+'pt';
	}
}
function down()
{
	aux=parseInt(div.style.top.substring(0,div.style.top.length-2));
	if(aux<0)
	{
		aux+=10;
		div.style.top=aux+'pt';
	}
}
function setMovimiento(hacia)
{
	movimiento=hacia;
}
function mover()
{
	if(movimiento>0)
	{
		up();
	}else{
		if(movimiento<0)
		{
			down();
		}		
	}
}
function changeImg(path,hot,idi,galeria,alt)
{
	big_img=document.getElementById('bigimg');
	big_img.src=hot+'/images/galerias/'+galeria+'/'+path;
	big_img.alt=alt;
	big_img.title=alt;
}
var int=self.setInterval("mover()",35);
