вариант ротатора текста)))
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
</head>
<body>
<script language="JavaScript" type="text/javascript">
var quote = [];
quote[0] = "текст0";
quote[1] = "текст1";
quote[2] = "текст2";
quote[3] = "текст3";
var quo = Math.floor(Math.random()*(quote.length));
document.write(quote[quo])
</script>
</body>
</html>