﻿


function texto_aleatorio(){
   var textos = new Array()
    textos[0] = "Doidera, Mancha Azul doidera!!!"
   //textos[0] = "Ideologia, Força e Irmandade!"
   //textos[1] = "Com o CSA desde 1992!"
   //textos[2] = "O Bonde é Forte e Não Para!!!"   
    

   aleat = Math.random() * (textos.length)
   aleat = Math.floor(aleat)
   document.write(textos[aleat])
} 







