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

//galeria 1
var imagenesgal1=new Array()
imagenesgal1[0]="bici_nespe_1.jpg"
imagenesgal1[1]="bici_nespe_2.jpg"
imagenesgal1[2]="bici_nespe_3.jpg"
imagenesgal1[3]="bici_nespe_4.jpg"
imagenesgal1[4]="bici_nespe_5.jpg"
imagenesgal1[5]="bici_nespe_6.jpg"
imagenesgal1[6]="bici_nespe_7.jpg"


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

contgal1=0;
function pasarnespe(igal1)
{
	if(igal1==1)
	{
		if (contgal1 < imagenesgal1.length-1)
			{contgal1 ++}
		else
			{contgal1=0}
		document.getElementById("nespe").src= dire + imagenesgal1[contgal1];
		document.getElementById("anespe").href= dire + "g" + imagenesgal1[contgal1];
	}
	if (igal1==0)
	{
		if (contgal1 != 0)
			{contgal1 --}
		else
			{contgal1 = imagenesgal1.length-1}
		document.getElementById("nespe").src= dire + imagenesgal1[contgal1];
		document.getElementById("anespe").href= dire + "g" + imagenesgal1[contgal1];
	}
}

//galeria 2
var imagenesgal2=new Array()
imagenesgal2[0]="bici_eloi_1.jpg"
imagenesgal2[1]="bici_eloi_2.jpg"
imagenesgal2[2]="bici_eloi_3.jpg"
imagenesgal2[3]="bici_eloi_4.jpg"
imagenesgal2[4]="bici_eloi_5.jpg"
imagenesgal2[5]="bici_eloi_6.jpg"
imagenesgal2[6]="bici_eloi_7.jpg"
imagenesgal2[7]="bici_eloi_8.jpg"


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

contgal2=0;
function pasareloi(igal2)
{
	if(igal2==1)
	{
		if (contgal2 < imagenesgal2.length-1)
			{contgal2 ++}
		else
			{contgal2=0}
		document.getElementById("eloi").src= dire + imagenesgal2[contgal2];
		document.getElementById("aeloi").href= dire + "g" + imagenesgal2[contgal2];
	}
	if (igal2==0)
	{
		if (contgal2 != 0)
			{contgal2 --}
		else
			{contgal2 = imagenesgal2.length-1}
		document.getElementById("eloi").src= dire + imagenesgal2[contgal2];
		document.getElementById("aeloi").href= dire + "g" + imagenesgal2[contgal2];
	}
}