ich trau mich nicht :D
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Bla Bla Bla</title>
</head>
<body background="1/background.jpg">
<table align="center">
<tr align="center">
<td align="center" width="100%">
<script type="text/javascript">
var texter=new Array
texter[0]='bla1';
texter[1]='sonstwas';
texter[2]='was weiss ich';
texter[3]='noch ding';
var i=0;
function changer(){
document.getElementById('text').innerText=texter[i];
i++;
if (i>3) i=0;
window.setTimeout("changer()", 1000);
}
</script>
</td>
</tr>
</table>
</body>
</html>