

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(6)
quote[0] = "Ihr Distributor für Schneideplotter!"
quote[1] = "Hersteller von Software wie EasyCut, Poster Studio, ..."
quote[2] = "Schneideplotter, LFP-Drucker, Werkzeugplotter, ..."
quote[3] = "Hardware, Software, Zubehör, Verbrauchsmaterial und mehr ..."
quote[4] = "Service, Wartung und Reparatur für Ihre Maschinen."
quote[5] = "Ihr Spezialist für Solvent Inkjet Systeme."

function writeSlogan()
{
var now = new Date()
var sec = now.getSeconds()
var core = sec % quote.length

var thequote = quote[core]
var theq = ''
var theend = ''


document.write( '' + theq + thequote + theq + ''  )
}


