

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(5)
quote[0] = "Automatic Programming will be one of the most important areas of computer science . . . in the next 20 years."
quote[1] = "Discipulus is a fast and robust tool for transforming data into equations. I have personally used the tool since 1998 and is my tool of choice for regression and classification in noisy data. With it, I have been able to solve problems that other methods (neural networks, linear regression, decision trees, SVM's etc.) were unable to solve during well conducted studies."
quote[2] = "Discipulus uses a combination of machine code based genetic algorithms and  evolutionary strategies to uncover the mathematical program that represents  the functional information content of the data. It is lightning fast compared to other evolutionary programming approaches and quite immune to overfitting."
quote[3] = "Speed Matters . . ."
quote[4] = ". . . for here be many of [their] old customers."

author = new StringArray(5)
author[0] = "Dr. Wolfgang Banzhaf"
author[1] = "L.M.Deschaine, Science Applications International Corp."
author[2] = "Model and Mine Review."
author[3] = "Frank D. Francone"
author[4] = "William Shakespeare, Measure for Measure."

function writeQuote()
{
var now = new Date()
var sec = now.getSeconds()
var core = sec % quote.length

var thequote = quote[core]
var theauthor = author[core]
var theq = '&quot;'
var theend = ''


document.write( '<i>' + theq + thequote + theq + " " + theauthor + '</i>'  )
}


