<!--
// 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(4)

//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] = "&quot;We were getting ready to host a large family gathering. We needed to get rid of a lot of &quot;stuff&quot; to make room and to make the bedrooms, family room and kitchen presentable. With help from An Organized Solution, we had the house looking great and ready for company within a few days.&quot;<br> -- Mark W., physician"
quote [1] = "&quot;Though I can't say I now look forward to my next move, I can, without a doubt, say that I'm not intimidated by the monstrous task. An Organized Solution has a system for packing and unpacking that takes the dread out of the whole project.&quot;<br> -- Kate M., social worker"
quote [2] = "&quot;Two avid cooks, a small kitchen, and lots of gadgets...a recipe for culinary chaos.  Betsy's organizing skill found space where we thought there was none and made the tight quarters much more user-friendly.  Her logical rearranging of the kitchen allows us to be so much more efficient. Next stop: the home office!&quot;<br> -- Melissa H., registered nurse"
quote [3] = "&quot;It's amazing what a fresh perspective can do for a room that you see every day. Betsy organized the kitchen in a way that really made the most of the counter, cabinet and drawer space. Her changes - things we would never have thought of - improved the 'workflow' and just made the room a more inviting place to cook and entertain.&quot;<br> -- Tom S., marketing director"

///////////////////////////////////////////////////////////////////

var ran = 60/quote.length

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

var thequote = quote[core]

//-->

