var dire = "../images/nac_1" //directorio o ruta donde están las imágenes

var imagenes=new Array()
imagenes[0]="foto01.jpg"
imagenes[1]="foto02.jpg"
imagenes[2]="foto03.jpg"
imagenes[3]="foto04.jpg"
imagenes[4]="foto05.jpg"
imagenes[5]="foto06.jpg"
imagenes[6]="foto07.jpg"
imagenes[7]="foto08.jpg"
imagenes[8]="foto09.jpg"
imagenes[9]="foto10.jpg"
imagenes[10]="foto11.jpg"
imagenes[11]="foto12.jpg"
imagenes[12]="foto13.jpg"
imagenes[13]="foto14.jpg"
imagenes[14]="foto15.jpg"
imagenes[15]="foto16.jpg"
imagenes[16]="foto17.jpg"
imagenes[17]="foto18.jpg"
imagenes[18]="foto19.jpg"

if(dire != "" && dire.charAt(dire.length-1) != "/")
{dire = dire + "/"}

cont=0;
function pasar(i)
{
	if(i==1)
	{
		if (cont < imagenes.length-1)
			{cont ++}
		else
			{cont=0}
		document.getElementById("foto").src= dire + imagenes[cont]
	}
	if (i==0)
	{
		if (cont != 0)
			{cont --}
		else
			{cont = imagenes.length-1}
		document.getElementById("foto").src= dire + imagenes[cont]
	}
}

function grande()
{
	var ruta = dire + "g" + imagenes[cont];
	window.open(ruta);
}
