
var numOfQuotes = 2;
function quote() {
var quote = new Array(numOfQuotes + 1);
quote[0]="“<i>My husband and I have really enjoyed the Phonics Road. After going to college for an education degree and teaching in a Christian school for 13 years, I never learned the history of the English language. I am thrilled to have found your program to teach my own children at home.</i></p> <p ALIGN=\"RIGHT\"><b>Lisa K.,</b> MN</p>";
quote[1]="“<i>My husband and I have really enjoyed the Phonics Road. After going to college for an education degree and teaching in a Christian school for 13 years, I never learned the history of the English language. I am thrilled to have found your program to teach my own children at home.</i></p> <p ALIGN=\"RIGHT\"><b>Lisa K.,</b> MN</p>";
quote[2]="“<i>My husband and I have really enjoyed the Phonics Road. After going to college for an education degree and teaching in a Christian school for 13 years, I never learned the history of the English language. I am thrilled to have found your program to teach my own children at home.</i></p> <p ALIGN=\"RIGHT\"><b>Lisa K.,</b> MN</p>";

indxOfQuote = rndInteger();
strQuote = quote[indxOfQuote];
return strQuote;
} 

function rndInteger() {
var rndNumber = -1;
while (rndNumber <0 || rndNumber > numOfQuotes || isNaN(rndNumber)) {
     rndNumber = parseInt(Math.random() * (numOfQuotes + 1));
     }
return rndNumber;
}

