<!--
var text = "Ihr Besuchertausch | 240hits.de"
var speed = 75
var x = 0
function go() {
var ago = text.substring(0,x)
var bgo = text.substring(x,x+1).toUpperCase()
var cgo = text.substring(x+1,text.length)
window.status = ago + bgo + cgo
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("go()",speed)
}
go();
//-->

