function cambiar_fondo(){
	var valor=parseInt(document.getElementById("idfoto").value);
	if(valor==6){valor=1;}
	else	{valor=valor+1;}document.getElementById("idfoto").value=valor;
	document.getElementById("cabfoto").className="foto"+valor;
}
setInterval('cambiar_fondo()',6000);