<!--
// 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
wouldyou = new StringArray(12)

//wouldyou [x] = "text"; x should start with 0; quote marks within the quote should look like this: \" 
//**Make sure quote is all on one line++
wouldyou [0] = "WOULD YOU like to be able to get out of the house on time and with everything you need every morning?"
wouldyou [1] = "WOULD YOU like to be able to sit at your desk and have room to pay your bills?"
wouldyou [2] = "WOULD YOU like to be able to use your dining table for dining? "
wouldyou [3] = "WOULD YOU like to be able to see the floor in your child's room?"
wouldyou [4] = "WOULD YOU like to reduce the clutter in your kitchen cabinets and pantry?";
wouldyou [5] = "WOULD YOU like to be able to get something out of your garage or basement without having to move five other things?";
wouldyou [6] = "WOULD YOU like your home to be presentable for company on 30 minutes notice?";
wouldyou [7] = "WOULD YOU like your bedroom to be a peaceful oasis instead of a storage area?";
wouldyou [8] = "WOULD YOU like to be able to park in your garage?";
wouldyou [9] = "WOULD YOU like to have your bills organized in a way that makes them easy to keep track of and pay on time?";
wouldyou [10] = "WOULD YOU like to have a home office that is a pleasure to work in?";
wouldyou [11] = "WOULD YOU like to be able to view your upcoming move with excitement rather than dread?";

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

var ran = 60/wouldyou.length

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

if (core>(wouldyou.length-3)){
		if (core=(wouldyou.length-2)){
			core2=core+1;
			core3=0;
		}
		else {
			core2=0;
			core3=1;
		}
	}
else {
	core2=core+1;
	core3=core+2;
	}

var thewouldyou1 = wouldyou[core]
var thewouldyou2 = wouldyou[core2]
var thewouldyou3 = wouldyou[core3]
//-->
