
<!-- vor alten Browsern verstecken

var text = new Array();
text[0] = "Willkommen bei Hanno Travel  " +
         "- Ihr Reiseservice ";
text[1] = "Individualreisen und Gruppenreisen ";
      
text[2] = "nach Brasilien, Südamerika und weltweit ...";  
var momentan = 0;
var position = 0;

function schreibmaschine() {
  if (position < text[momentan].length) {
    window.status = text[momentan].substring(0,position);
    position++;
    setTimeout("schreibmaschine()", 100);
  } else {
    window.status = text[momentan];
    position = 0;
    momentan++;
    if (momentan >= text.length) momentan = 0;
    setTimeout("schreibmaschine()", 1000);
  }
}

// -->
