<!--

var core = 0
var currentdate = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(3)
quote[0] = "I like what you have done with the site its informative and not too cluttered, which is a plus."
quote[1] = "Primary Film Focus looks good its easy to navigate around, just a thought you could set up a classified section."
quote[2] = "I found Primary Film Focus to be informative, especially regarding scriptwriting. Keep up the good work."


author = new StringArray(3)
author[0] = "J Mason"
author[1] = "Harlequin"
author[2] = "Mike"

var ran = 60/quote.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thequote = quote[core]
var theauthor = author[core]
var thebreak = ' - '
var theq = '"'
var theend = '.'

document.write(theq + thequote + theq + thebreak + theauthor + theend)

//-->