function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "In America we HEAR ALOT about the traditions of the Jews and SEE ALOT about the traditions of the Church. --Brother MattithYah"
random_text[number++] = "Yahweh\'s perfect will for our lives will never contradict His original commandments.  --Nancy Campbell"
random_text[number++] = "Know YAHWEH.  Know PEACE.  NO Yahweh.  NO peace."
random_text[number++] = "Psychology cannot fill the void where morality and conscience ought to be.  --Dr. Laura"
random_text[number++] = "Life\'s lessons are repeated until you learn them, and ignoring them will only cause you to go through old lessons again and again. --Lew White"
random_text[number++] = "Mankind sells insurance in case things go wrong. Yahweh gives assurrance that all things work together for good to those which are called according to his purposes. --Brother MattithYah"
random_text[number++] = "Yahweh plus one equals a majority --Mary Slessor"
random_text[number++] = "Yahshua proved that a sinless life can be lived in a sinful world. --Unknown"
random_text[number++] = "I\'ve heard people say \'the church is too worldly\'.  I\'ve come to see things a little differently. I think the world is \'too churchy\'. Violators of the first commandment worship, give loyalty to, and obey their church before, or instead of Yahweh. --Lloyd Brumbaugh"
random_text[number++] = "If there be conflict between truth and the church, truth should always take precedence. --Lloyd Brumbaugh"
random_text[number++] = "There is one problem with life -- You can't just click \'Edit, Undo\' . --R. Coover"
random_text[number++] = "Searching for truth is always more productive than searching for the true church. --Lloyd Brumbaugh"
random_text[number++] = "Wrong is wrong... even if everybody does it.  Right is right... even if nobody does it. --Unknown"
random_text[number++] = "The \'over protective\' parent is the one whose children are better behaved than yours are. --Unknown"
random_text[number++] = "It\'s pretty bad when those \'under grace\' are worse than those who aren\'t. --C. Coover"
random_text[number++] = "It all comes down to values and priorities. Our society does not value children; therefore, they are not a priority. --Dr. Laura"
random_text[number++] = "We do not have to be ashamed that we live by the grace of Elohim rather than man\'s brilliance, man\'s strength, and man\'s money. --Norman Edwards"
random_text[number++] = "Need a vision for good decisions? Think.... predict...... Choose."
random_text[number++] = "Today many chewz and chewz and chewz the wrong choices until they\'re all chewed up with not many choices left. --Brother MattithYah"
random_text[number++] = "There is a difference between freedom to do as you please and freedom to please as you do. --A. Coover"
random_text[number++] = "Those who are honestly mistaken will do one of two things when faced with the truth. They will either cease to be mistaken or they will cease to be honest. --Unknown"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);