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(20);
ideas[0] = "We value most of all that Christ died for our sin, the righteous for the unrighteous, to bring us to GOD.";
ideas[1] = "We value GOD's grace as the basis for our salvation."
ideas[2] = "We value the work of the Holy Spirit as the instrument that transforms lives."
ideas[3] = "We value worship that is an all of life experience that honors and glorifies GOD."
ideas[4] = "We value the Bible which we believe speaks with all the authority of GOD himself."
ideas[5] = "We value prayer as we recognize GOD's authority over all things, and seek to pray according to his will."
ideas[6] = "We value practical demonstrations of love and compassion towards one another."
ideas[7] = "We value commitment, honesty and integrity in relationships."
ideas[8] = "We value weekly attendance as a vital means of encouraging one another."
ideas[9] = "We value clear, concise Bible teaching that impacts on our lives and leads to ever increasing obedience and faith in the Lord Jesus Christ."
ideas[10] = "We value small groups as means of building others up in the love and knowledge of GOD."
ideas[11] = "We value teaching children about being followers of Jesus."
ideas[12] = "We value leaders who serve the church by leading and lead the church by serving."
ideas[13] = "We value opportunities by edifying others be serving them with our Spirit given gifts."
ideas[14] = "We value giving financially to extend the ministry of our church."
ideas[15] = "We value unbelievers and seek to win them for Christ through genuine friendship."
ideas[16] = "We value lives that point people to heaven while living on earth."
ideas[17] = "We value training and equipping people to be capable ministers on the gospel."
ideas[18] = "We value the Bible's emphasis on family and strive to enable people to be better parents, partners, children, grandparents, etc..."
ideas[19] = "We value a Christ-like attitude that is not judgmental but restores others gently."
ideas[20] = "We value being dependant on GOD to provide everything we need."

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