Cita: <script type='text/javascript'>
function texto_aleatorio(){
var textos = new Array()
textos[0] = "Texto 0"
textos[1] = "Texto 1"
textos[2] = "Texto 2"
textos[3] = "Texto 3"
textos[4] = "Texto 4"
aleat = Math.random() * (textos.length)
aleat = Math.floor(aleat)
document.write(textos[aleat])
}
</script>
<script language=javascript>texto_aleatorio()</script>
+ Para añadir mas solo agrega otro
"textos[5] = "Texto 5" al orden que vallan los textos y así sucesivamente.
Recuerda que el texto cambiara cada vez que entres a la pagina y/o la recargues.
Saludos!
iPWG