

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(5)
quote[0] = "It's a way to help kids learn."
quote[1] = "It has refocused my vision for my classroom, and that learning can not be interrupted."
quote[2] = "It's okay. Like if you're bad if you go to Step 1, you get to relieve your badness."
quote[3] = "We can already see a tremendous difference in the behavior and attitude of our students, and in the amount of curriculum that teachers can cover."
quote[4] = "It's a good program. It helps you learn to control your actions and temper and stuff."
quote[5] = "I was absent 3 days last week and I had a sub - fresh out of college.  She was amazed with the program, the behavior of the students, and their ability to accept responsibility honestly and friendly."

author = new StringArray(5)
author[0] = "Lindsay"
author[1] = "Classroom Teacher"
author[2] = "Brett (a kindergartner)"
author[3] = "Classroom Teacher"
author[4] = "Nick"
author[5] = "Classroom Teacher"


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>'  )
}


