var speed = 20;
var cycledelay = 3500;
var maxsize = 16;

var x = 0;
var y = 0;
var themessage, size;
var esize = "</font>";

//-----------------------------------------------------------------------------------------------------------
//--- wurde in die HTML-Datei kopiert
//-----------------------------------------------------------------------------------------------------------
//      function initArray() {
//         this.length = initArray.arguments.length;
//         for (var i = 0; i < this.length; i++) {
//            this[i] = initArray.arguments[i];
//         }
//      }
//      var themessage2 = new initArray(
//         "Saisoneröffnung am 05.04.2008 um 13:00 Uhr.",
//         "SHOP ist nun Online (fast vollständig :-))",
//         "Liquid Force besucht uns wieder, diesmal an einem Samstag den 17.05.2008.",
//         "Der Liftvermietungskalender 2008 ist Online. Bucht frühzeitig Euren Wunschtermin 2008."
//      );
//-----------------------------------------------------------------------------------------------------------

document.write('<span id="wds"></span><br>');
function upwords(){
   themessage = themessage2[y];
   if (x < maxsize) {
      x++;
      setTimeout("upwords()",speed);
   }
   else{
      setTimeout("downwords()",cycledelay);
   }
   wdss=document.getElementById('wds');
   wdss.innerHTML = "<center><font color=#E0EDFE><b>"+themessage+"</b></font></center>";
   wdss.style.fontSize=x+'px'
}

function downwords(){
   if (x > 1) {
      x--;
      setTimeout("downwords()",speed);
   }
   else {
      setTimeout("upwords()",1);
      y++;
      if (y > themessage2.length - 1) y = 0;
   }
   wdss.innerHTML = "<center><font color=#E34091>"+themessage+"</font></center>";
   wdss.style.fontSize=x+'px'
}
setTimeout("upwords()",speed);

