
function HideContent2(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.visibility = "hidden";
}

function ShowContent2(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.visibility = "visible";
}

function canvia_foto(num){
	clearTimeout(timerID);
	canvia_foto2(num);	
}

function canvia_foto2(num){

	HideContent2('text0');
	HideContent2('text1');
	HideContent2('text2');
	HideContent2('text3');
	HideContent2('text4');
	
	document.getElementById('foto0').bgColor="";
	document.getElementById('foto1').bgColor="";
	document.getElementById('foto2').bgColor="";
	document.getElementById('foto3').bgColor="";
	document.getElementById('foto4').bgColor="";
	
	imgName='img/portada/gegant/'+fotos_portada[num];
	
	document.getElementById('img_fondo').style.background = "url(" + imgName + ")";
	document.getElementById('foto'+num).bgColor=colors_portada[num];
	document.getElementById('text'+num).bgColor=colors_portada[num];
	ShowContent2('text'+num);
}

function foto_portada_automatic(foto_actual){
	canvia_foto2(foto_actual);
	foto_actual++;
	if(foto_actual==5)foto_actual=0;
	timerID = setTimeout(function() { foto_portada_automatic(foto_actual); },4000);
}

function fotos_portada_precarga(){
	precargafoto0 = new Image();
	precargafoto0.src = "img/portada/gegant/"+fotos_portada[0];
	precargafoto1 = new Image();
	precargafoto1.src = "img/portada/gegant/"+fotos_portada[1];
	precargafoto2 = new Image();
	precargafoto2.src = "img/portada/gegant/"+fotos_portada[2];
	precargafoto3 = new Image();
	precargafoto3.src = "img/portada/gegant/"+fotos_portada[3];
	precargafoto4 = new Image();
	precargafoto4.src = "img/portada/gegant/"+fotos_portada[4];
}