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(6);
ideas[0] = "The Piedras Blancas Light Station Association provides for the restoration, conservation, interpretation, and stewardship of the unique natural, historical, and cultural resources at the Piedras Blancas Light Station.";
ideas[1] = "Protect, conserve, and preserve the unique natural, cultural, and historic site resources."
ideas[2] = "Support and enhance interpretive, recreational, and educational activities focusing on the natural, cultural, and historic themes to include community and continuing education."
ideas[3] = "Actively support relevant scientific research opportunities."
ideas[4] = "Initiate, foster, and inspire community support, diversity, and partnerships."
ideas[5] = "Integrate a holistic approach to site stewardship in all endeavors to protect the resources for future generations."
ideas[6] = "Conduct all activities and programs with the highest levels of integrity and ethical standards."

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