Всем привет. Нужна Ваша помощь с ротатором текста.
Вот собственно сам ротатор
Код:
|
<Script Language="JavaScript">
var howMany = 10
var quote = new Array(howMany+1)
quote[0]="текст1"
quote[1]="текст4"
quote[2]="текст2"
quote[3]="текст3"
.
.
.
quote[9]="текст10"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
</Script> |
Вставляю в нужное место а он не пашет. У кого какие соображения?