<!--
// 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(6)

//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] = "I was feeling overwhelmed and desperate about my messy, disorganized house when I was lucky enough to find one of Sara's business cards. She was wonderful to work with: enthusiastic, positive, and with great ideas for organizing things so that once the house was clean, it's much easier to maintain. She is a great motivator!<br>-- S.B., Hudson, Wisconsin"
quote [1] = "My closet is still extremely organized after a number of months, and it's very much working for me. I just can't thank you enough. It's really a freeing kind of thing. You were really easy to work with...you don't act like you're above the people you work with and you don't make your clients feel bad. You're so easy to talk to!<br>--A.F., Eden Prairie, Minnesota"
quote [2] = "Sara spoke to my church circle of 25 women. What a wealth of information she is regarding organizing the kitchen, home office, children's rooms, etc. Her ideas were creative, yet not difficult to put to use. I found Sara very friendly and helpful, and I enjoyed working with her.<br>-- M. M., Edina, Minnesota"
quote [3] = "Everything is so much easier to find. Your ideas for organizing my office really have helped immensely!<br>-- S. L., Edina, Minnesota"
quote [4] = "Thank you so much for the gift you share -- this whole process has been so emotionally and spiritually powerful. I am glad for your companionship on this part of my journey... It is energizing to see the beautiful space.<br>-- P. P., Roseville, Minnesota"
quote [5] = "After organizing our home office, it now feels like we are stepping out of the dark and into the light when we enter that room!<br>-- B. S., Maplewood, Minnesota"

///////////////////////////////////////////////////////////////////

var ran = 60/quote.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thequote = quote[core]

//-->
