// JavaScript Document
function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(5);
ideas[0] = "FREQUENTLY ASKED QUESTIONS<br /><br />Q. What is the landfill issue about? <br /><br /> A. Whether Jacksonville is going to honor the low-bid contract…";
ideas[1] = "FREQUENTLY ASKED QUESTIONS<br /><br />Q. Waste Management developed the landfill? <br /><br /> A. Yes. As part of their successful bid…"
ideas[2] = "FREQUENTLY ASKED QUESTIONS<br /><br />Q. What else does the restated contract offer? <br /><br /> A. The agreement provides even more benefits…"
ideas[3] = "FREQUENTLY ASKED QUESTIONS<br /><br />Q. Why is there a restated contract? <br /><br /> A. About two years ago, the city and Waste Management agreed…"
ideas[4] = "FREQUENTLY ASKED QUESTIONS<br /><br />Q. When will the City Council make a decision on the restated contract? <br /><br /> A. Sometime in mid to late April…"


// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff