// JavaScript Document
<!--
// 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] = ' '

  }
}

testimonial = new StringArray(4)
testimonial[0] = "Fire Yourself gives insight and understanding to anyone wanting to own your destiny. A definite read…."
testimonial[1] = "Refreshing! Insightful! One of the most creative approaches to designing a successful future I’ve read."
testimonial[2] = "Wayne Mullins gives all of us a lot to think about in Fire Yourself. The book sure fired me up and will do the same for you. Get ready for an intense reading experience."
testimonial[3] = "Accepting responsibility for your life and career is the springboard to greater success, and this book shows you how to do it."



source = new StringArray(4)
source[0] = "Horatio Isadore – CEO Isadore Inc."
source[1] = "Dr. Joe Aguillard – President of Louisiana College <a href='http://www.lacollege.edu'>www.lacollege.edu/</a>"
source[2] = "Pat Williams - Sr. Vice President of the Orlando Magic"
source[3] = "Brian Tracy – Author of Million Dollar Habits"



var ran = 60/testimonial.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thetestimonial = testimonial[core]
var thesource = source[core]
var thebreak2 = '<br /><br />'
var theq = '"'


//-->
