<!--------------------Text Script------------------------->   
<!--
var speed = 120;
var pause = 1200;
var timer = null;
var array = new Array();
array[0] = ".::Highlander vom Dornbachweg::.";
array[1] = "~~ Herzlich Willkommen auf unseren Seiten ~~";
array[2] = "";
var which=0;
var index=0;
function show()
{
var text = array[which];
if (index < text.length) 
{
if (text.charAt(index) == " ") index++;                        
var Message = text.substring(0, index + 1); 
window.status = Message; index++; 
timer = setTimeout("show()", speed);
} 
else 
{
index = 0;
if (++which == array.length) which = 0;
timer = setTimeout("show()", pause);
}}
// -->
<!--------------------Text Script------------------------->