<!--
// 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] = ' '

  }
}

// EDIT SECTION ////////////////////////////////////////////////////
//enter total number of quotes inside parentheses
quote = new StringArray(3)

//quote [x] = "text"; x should start with 0; quote marks within the quote should look like this: \" 
//**Make sure quote is all on one line++
quote [0] = "Before I met with Sara, I knew I was interested in becoming a professional organizer but I was not sure where to start or if I was even capable of doing the job. The meeting with Sara was an incredibly positive experience for me. She not only gave me very important facts about the business world of professional organizing but also gave me confidence in my ability to succeed in that world. I left the meeting very excited about my opportunities!<br> -- A.P., Eden Prairie, MN"
quote[1]="Sara always came very prepared to coaching sessions so we could cover a lot of material in a short amount of time. She has a wide variety of skills to draw from such as professional organizing experience, knowledge of marketing techniques, and great communication skills.  As a rookie in the field, it was a much faster way of getting up-to-speed rather than trying to learn on my own. Sara is also a great cheerleader and makes herself available for questions and guidance along the way.<br> -- Kristin Dery, Re:arrangement Inc.<br>Mahtomedi, MN"
quote[2]="We enjoyed meeting with you and felt that our time was well spent. Instead of trial and error on our part, we will benefit from your experience and save ourselves time and effort as we launch our business. Thank you for your advice, ideas, and encouragement.<br> -- Maureen Magnuson and Tracy Doheny<br>Chanhassen, MN"

///////////////////////////////////////////////////////////////////

var ran = 60/quote.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thequote = quote[core]

//-->
