<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var core = 0
var currentdate = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(8)
quote[0] = "The Logo Monsters design team offers the greatest value I've ever seen from a service company.  The communication was easy and I had my logo within a matter of days!"
quote[1] = "WOW! What can I say?!?!? Who knew that amongst all the overpriced hype out there it was these guys that delivered exactly what I was looking for.  True bang for buck. Thanks again."
quote[2] = "Step 1: Signup. Step 2: Send the brief.  Step 3: Receive the concept I described. Step 4: Tweak the design a little for perfection.  Step 5: My very own logo! Can't get easier than that, can it?  Cheers."
quote[3] = "Very fast and professional. The logo looks great and is exactly what we wanted. Keep up the good work Logo Monsters. Expect many more customers after my recommendations."
quote[4] = "Excellent communication and workmanship.  How you manage to offer such professionalism and efficiency at the rate you're charging is still beyond me! Regardless, you've got one seriously happy customer here!"
quote[5] = "For so many years we've settled for a less-than-adequate and dated logo designed by another not-to-be-mentioned design firm. Then you came along and truly brightened our day. For this I thank you."
quote[6] = "'Value for money' just doesn't do this company justice. They go above and beyond what is traditionally required from such a modest rate, and with their skill they could easily charge ten times their current. "
quote[7] = "Fantastic! We're all so happy with the logo! From the get-go it was easy sailing. Your prompt responses and spot on design concepts, I'm sure, put you up there with the best in the business. Best of luck in the future."

author = new StringArray(8)
author[0] = "Jane Krakowski (Pennsylvania, USA)"
author[1] = "Michael Surri (CA, USA)"
author[2] = "Thomas Harrison (NSW, AUSTRALIA)"
author[3] = "Jerry E. (BC, CANADA)"
author[4] = "Grant Sykes (Middlesbrough, England)"
author[5] = "Beth Jansen (TX, USA)"
author[6] = "Louisa Thijssen (Cleveland, UK)"
author[7] = "Samuel Ciccerone (VIC, AUSTRALIA)"

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)

//-->
