Меняющийся текст.

<script>
var phr = new Array()

phr.push("Фраза1")
phr.push("Фраза2")
phr.push("Фраза3")

var ord=new Array()
var len=phr.length,i=0,topush

while(len!=ord.length){
topush=true
i=Math.round(Math.random()*(len-1))
if(ord.length==0) ord.push(i)
for(x=0;x<ord.length;x++) if(ord[x]==i) topush=false;
if(topush) ord.push(i)
}
for(x=0;x<len;x++) document.write(phr[ord[x]]+' ')
</script>

в начале скрипта добавляй свои фразы столько, сколько душе угодно.
если нужно добавить фразу, добавь строчку phr.push("НоваяФраза") сразу после красного блока.