var actual = 1
var arrel  = "../../" + dir + "/";
function canviImatge(nomfoto1, num1, num2, hor)
{
	var nomfoto1b = nomfoto1
	var num1b = num1
	var num2b = num2
	var img_start = 8;
	
	if (hor) {
		if (num2b > 3) num2b = 1
	}else{
		if (num2b > 2) num2b = 0
	}
	nom = nomfoto1b + num1b + ".jpg"
		document.images[num2b+img_start].src = arrel + nom;
		if (nom == "salonestar6.jpg" || nom=="actividades4.jpg" || nom=="habitacion3.jpg" || nom=="apartamento11.jpg") {
			document.images[num2b+img_start].width = 113
			document.images[num2b+img_start].height = 168
		}
		else if(nom == "actividades6.jpg") {
			document.images[num2b+img_start].width = 168
			document.images[num2b+img_start].height = 107		
		}
		else if(nom == "actividades7.jpg") {
			document.images[num2b+img_start].width = 200
			document.images[num2b+img_start].height = 77
		}
		else if(nom == "exteriores10.jpg") {
			document.images[num2b+img_start].width = 168
			document.images[num2b+img_start].height = 108
		}
		else if(nom == "exteriores11.jpg") {
			document.images[num2b+img_start].width = 168
			document.images[num2b+img_start].height = 98
		}		
		else if(nom == "exteriores12.jpg") {
			document.images[num2b+img_start].width = 168
			document.images[num2b+img_start].height = 90
		}				
		else {
			document.images[num2b+img_start].width = 168
			document.images[num2b+img_start].height = 113
		}
	num1b++;
	num2b++;
	if (num1b > total) num1b = 1
	crida = "canviImatge('"+nomfoto1b+"', "+num1b+", "+num2b+ ", " + eval(hor) + ");"
	window.setTimeout(crida, 4000)
}

function canviImatgePortada(nomfoto1, num1, num2)
{
	var nomfoto1b = nomfoto1
	var num1b = num1
	var num2b = num2

	if (num2b > 4) num2b = 0
	nom = "f" + num1b + nomfoto1b + ".jpg"

	document.images[num2b].src = nom
	
	num1b++;
	num2b++;
	if (num1b > total) num1b = 1
	crida = "canviImatgePortada('"+nomfoto1b+"', "+num1b+", "+num2b+");"
	window.setTimeout(crida, 4000)
}