//Usa jquery
var ArrayGifs = [
	 'url(../img/Fondos-Animado-2a.jpg)'
	,'url(../img/Fondos-Animado-2b.jpg)'
	,'url(../img/Fondos-Animado-2c.jpg)'
	,'url(../img/Fondos-Animado-2d.jpg)'
	];
var time = new Date();
var seconds = time.getSeconds();
var iFoto = Math.round(seconds / 15); //Valor entre 1-4

//cambiem la foto de fons cada 4 segons
function changeFoto(secc,link){
	$(secc)
		.css("height","162px")
		.css("background-image",link);
}
function canviFotoHeader(temps){
			//Valor entre 0-3
			iFoto +=1;
			iFoto = iFoto % 4;

			changeFoto("h2.seccion0-0",ArrayGifs[iFoto]);
			changeFoto("h2.seccion0-1",ArrayGifs[iFoto]);
			changeFoto("h2.seccion0-2",ArrayGifs[iFoto]);
			changeFoto("h2.seccion0-3",ArrayGifs[iFoto]);
			changeFoto("h2.seccion0-4",ArrayGifs[iFoto]);
			changeFoto("h2.seccion0-5",ArrayGifs[iFoto]);
			changeFoto("h2.seccion0-6",ArrayGifs[iFoto]);
			setTimeout('canviFotoHeader('+temps+')',temps);
		};

$(function(){
	$("h2.seccion0-0").css("background-image",ArrayGifs[iFoto]);
	$("h2.seccion0-1").css("background-image",ArrayGifs[iFoto]);
	$("h2.seccion0-2").css("background-image",ArrayGifs[iFoto]);
	$("h2.seccion0-3").css("background-image",ArrayGifs[iFoto]);
	$("h2.seccion0-4").css("background-image",ArrayGifs[iFoto]);
	$("h2.seccion0-5").css("background-image",ArrayGifs[iFoto]);
	$("h2.seccion0-6").css("background-image",ArrayGifs[iFoto]);
	setTimeout('canviFotoHeader(8000)',8000);
});