var fin = false;
var fotos1 = new Array();
var fotos2 = new Array();
var fotos3 = new Array();
var fotos4 = new Array();
var actual = 1;
function precarga() {
		fotos1[1] = new Image();
		fotos1[1].src = "imagenes/sindical1.jpg";
		fotos1[2] = new Image();
		fotos1[2].src = "imagenes/sindical2.jpg";
		fotos1[3] = new Image();
		fotos1[3].src = "imagenes/sindical3.jpg";
		fotos1[4] = new Image();
		fotos1[4].src = "imagenes/sindical4.jpg";
		fotos1[5] = new Image();
		fotos1[5].src = "imagenes/sindical5.jpg";
		fotos1[6] = new Image();
		fotos1[6].src = "imagenes/sindical6.jpg";
		fotos1[7] = new Image();
		fotos1[7].src = "imagenes/sindical7.jpg";
		fotos1[8] = new Image();
		fotos1[8].src = "imagenes/sindical8.jpg";
		fotos2[1] = new Image();
		fotos2[1].src = "imagenes/hotel1.jpg";
		fotos2[2] = new Image();
		fotos2[2].src = "imagenes/hotel2.jpg";
		fotos2[3] = new Image();
		fotos2[3].src = "imagenes/hotel3.jpg";
		fotos2[4] = new Image();
		fotos2[4].src = "imagenes/hotel4.jpg";
		fotos2[5] = new Image();
		fotos2[5].src = "imagenes/hotel5.jpg";
		fotos2[6] = new Image();
		fotos2[6].src = "imagenes/hotel6.jpg";
		fotos2[7] = new Image();
		fotos2[7].src = "imagenes/hotel7.jpg";
		fotos2[8] = new Image();
		fotos2[8].src = "imagenes/hotel8.jpg";
		fotos3[1] = new Image();
		fotos3[1].src = "imagenes/canovas1.jpg";
		fotos3[2] = new Image();
		fotos3[2].src = "imagenes/canovas2.jpg";
		fotos3[3] = new Image();
		fotos3[3].src = "imagenes/canovas3.jpg";
		fotos3[4] = new Image();
		fotos3[4].src = "imagenes/canovas4.jpg";
		fotos3[5] = new Image();
		fotos3[5].src = "imagenes/canovas5.jpg";
		fotos3[6] = new Image();
		fotos3[6].src = "imagenes/canovas6.jpg";
		fotos3[7] = new Image();
		fotos3[7].src = "imagenes/canovas7.jpg";
		fotos4[1] = new Image();
		fotos4[1].src = "imagenes/parroco1.jpg";
		fotos4[2] = new Image();
		fotos4[2].src = "imagenes/parroco2.jpg";
		fotos4[3] = new Image();
		fotos4[3].src = "imagenes/parroco3.jpg";
		fotos4[4] = new Image();
		fotos4[4].src = "imagenes/parroco4.jpg";
	fin = true;
}

function play1() {
	if (actual == 8)
		actual = 1;
	else
		actual++;
	if (fin == false)
		return;
	$("#acambiar").fadeOut(1000,function() {
		document.images['acambiar'].src = fotos1[actual].src;
		setTimeout("enciende()",500);
	});
}

function play2(direccion) {
	if (actual == 8)
		actual = 1;
	else
		actual++;
	if (fin == false)
		return;
	$("#acambiar").fadeOut(1000,function() {
		document.images['acambiar'].src = fotos2[actual].src;
		setTimeout("enciende()",500);
	});
}

function play3(direccion) {
	if (actual == 7)
		actual = 1;
	else
			actual++;
	if (fin == false)
		return;
	$("#acambiar").fadeOut(1000,function() {
		document.images['acambiar'].src = fotos3[actual].src;
		setTimeout("enciende()",500);
	});
}

function play4(direccion) {
	if (actual == 4)
		actual = 1;
	else
			actual++;
	if (fin == false)
		return;
	$("#acambiar").fadeOut(1000,function() {
		document.images['acambiar'].src = fotos4[actual].src;
		setTimeout("enciende()",500);
	});
}

function enciende() {
	$("#acambiar").fadeIn(1000);
}