<!--
// (C) 2000 Klaus Hentschel [ All rights reserved ].
// e-mail: Black_runner@t-online.de
// www: http://Java.topcool.de
// www: http://home.t-online.de/home/Black_runner/
// Bitte entfernen sie diesen Vermerk nicht!

var text  = "Klappstuhl >>> aggressiv >>> dreckig >>> gut"                //Text
var speed = 50                                        //Geschwindigkeit
var x = 0

//Animationsaufruf
function kh() {
var a1 = text.substring(0,x)
var a2 = text.substring(x,x+1).toUpperCase()
var a3 = text.substring(x+1,text.length)
window.status = a1 + a2 + a3
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("kh()",speed)
}
kh();
//-->