function getQuote() {
var numQuotes = 33;
var phrase = new Array(numQuotes);
phrase[0] = "Why worry, when you can pray.";
phrase[1] = "There is no greater service than awakening an individual to the consciousness of that presence which may abide within.";
phrase[2] = "... as the body may dedicate its life and its abilities to a definite service, to the Creative Forces, or God, there will be healing forces brought to the body. This requires, then, that the mental attitude be such as to not only proclaim or announce a belief in the divine, and to promise to dedicate self to same, but the entity must consistently live such.";
phrase[3] = "There are problem-solving dreams from the soul, and there are dreams and visions from the Creator.";
phrase[4] = "For ye are a corpuscle in the body of God; thus a co-creator with Him, in what ye think, in what ye do.";
phrase[5] = "Weakness is only strength misapplied.";
phrase[6] = "It is not what one says that counts, but what one is!";
phrase[7] = "By the use of that in hand does one attain the next plane.";
phrase[8] = "Condemn not, then, that ye be not condemned. For indeed with what measure ye mete it will be measured to thee again. And that thou condemnest in another (yea, every man -every woman), that thou becomest in thine self!";
phrase[9] = "Serve ye one another, in love.";
phrase[10] = "Put self away. Lord, speak Thou through me as the opportunity is given, that should be the attitude.";
phrase[11] = "Make me a channel, O God, of blessings to others day by day.";
phrase[12] = "For until there is a manifested interest by the entity in a helpful influence in the lives of others, not a great deal of change for constructive forces may be expected - In such measures.";
phrase[13] = "First, analyze self and know thy ideal -spiritual, mental and material. Then know the author of thy ideal, and let it be founded in the spirituality of the purpose of whatever may be the efforts. Then apply thyself in those directions, keeping the self unspotted from contamination.";
phrase[14] = "If ye become interested in others, others are interested in you!";
phrase[15] = "Rather magnifying in thy life, in thy labors, in thy dealings with others, the love, the patience,the joy, the HAPPINESS ye find in service to a living God - even when others speak unkindly, even when there is that which is the least in man's knowledge - the lack of appreciation of the service one does.";
phrase[16] = "Doubt not, for the doubter is half lost.";
phrase[17] = "Make not of thyself a martyr, but as one that stands between the living and the dead, to glorify the Lord!";
phrase[18] = "Man alone is given the birthright of free will. He alone may defy his God!";
phrase[19] = "Tell them of the Happiness the Christ Way, in the manner that Jesus showed Himself to be the Christ; and the joy and Happiness in keeping HIS ways, His promises, His joys, His life before thee and before them always.";
phrase[20] = "The greatest service that may be done is the little word here and there, the kindly thought, the little deeds that make the heart glad, and the brightness of the Son come in the lives of all.";
phrase[21] = "Use that thou hast in hand to the glory of Him, and it will be acceptable to Him.";
phrase[22] = "Know self by activities of self in the daily walks of life, by comparing each thought and activity by your standard THE CHRIST.";
phrase[23] = "Be what thou seemeth, live thy creed. Hold up to the earth the torch divine. Be what thou prayest to be made. Let the GREAT MASTER'S step be thine.";
phrase[24] = "The more knowledge, the more responsibility. The more love, the more ability.";
phrase[25] = "For He hath chosen each of you as a messenger to someone. Fail Him not.";
phrase[26] = "What manner ye treat others, expect and ye will receive as much or more in return.";
phrase[27] = '"What wilt thou have ME do, O Lord?" and the ANSWER WILL be DEFINITE, clear, to each as are gathered here, will they seek in His name.';
phrase[28] = "First, find self. Know thine ideal. Know Who, and What is thy purpose.";
phrase[29] = "Over large bodies of water, then, do many men of many lands learn that that is hard to be understood by those on land. - the restlessness of waves causes quietness from within.";
phrase[30] = "Do not become the extremist in any direction.";
phrase[31] = "Glory signifies that ye are able to suffer. Only those who have suffered much may ever be glorified. Do ye seek Glory? Then ye must be willing to suffer; and if ye count thy suffering, thy disappointments, thy heartaches, thy misunderstandings, as judgments upon thee, ye are unwise.";
phrase[32] = "Any condition ever becoming reality is first dreamed.";
phrase[33] = "Each and every soul leaves the body as it rests in sleep.";
var num = Math.floor(Math.random() * (numQuotes + 1));
document.write(phrase[num]);
}

