//TEXTO CAMBIANTE
//Autor: Iván Nieto Pérez
//Este script y otros muchos pueden
//descarse on-line de forma gratuita
//en El Código: www.elcodigo.net

var indice = 0;
var top = 9;
var speed = 5000;
function CambiaTextoNAV() {
	document.capa1.document.write( textos[indice] )
	document.capa1.document.close()
	if ( indice == top )
		indice = 0
	else
		indice++
	setTimeout( "CambiaTextoNAV()", speed )
}

function CambiaTextoIE() {
	capa1.innerHTML = textos[indice]
	if ( indice == top )
		indice = 0
	else
		indice++
	setTimeout( "CambiaTextoIE()", speed )
}

function CambiaTexto() {
	if (document.layers) 
		CambiaTextoNAV()
	else if (document.all)
		CambiaTextoIE()
}



