/* Quotes by Master*/

function randquote()
{
	quotes = new Array(44);

	quotes[0] = "Everything else can wait, but your search for God cannot wait."
	quotes[1] = "Teach me to think of Thee until Thou dost become my only thought."
	quotes[2] = "Become the butterfly of eternity! Decorate your wings of realization with nature's infinite charms."
	quotes[3] = "Be transparent like the gems ... Thinking and perception should have gemlike clarity that will undistortedly reflect the Divine Mind."
	quotes[4] = "In every aspect of matter is evidence of the originality ... of that Cosmic Intelligence."
	quotes[5] = "Be a different individual, expressing the very best of your own unique nature."
	quotes[6] = "Everything is Spirit-in essence, though hidden in manifestation.  If you had the perception, you would see God in everything"
	quotes[7] = "Whatever you want to do, think about it...then take a little time; don't jump into anything at once."
	quotes[8] = "May all...who have been nurtured by a mother's love be themselves filled with a mother's affection, which is unconditional love, and express it toward others."
	quotes[9] = "Because we don't concentrate within, we are mystified by the imprints of the invisible Spirit in nature."
	quotes[10] = "Most people imitate others. You should be original, and whatever you do, do well."
	quotes[11] = "Love outlasts death and the ravages of time."
	quotes[12] = "The mother's love is not given to us to spoil us with indulgence, but to soften our hearts, that we may in turn soften others with kindness."
	quotes[13] = "Realize spiritually, that One Life pervades everything."
	quotes[14] = "When the soul is identified with Spirit, it feels itself as one with the Joy of limitless space."
	quotes[15] = "Pray that unceasing truth flow into your mind... and unceasing joy flow into your soul."
	quotes[16] = "Reflect about God, or about a beautiful peaceful scene, or about some pleasant experience. Calm, positive mental activity is revivifying."
	quotes[17] = "Pray that unceasing truth flow into your mind... and unceasing joy flow into your soul."
	quotes[18] = "Infinity is our Home. We are just sojourning awhile in the caravanserai of the body."
  quotes[19] = "In the deeper state of calmness, one perceives in that stillness the moon'd reflection of God's presence."
  quotes[20] = "Consider no one a stranger.  Learn to feel that everybody is akin to you."
  quotes[21] = "Everything in the Lord's creation has some specific utility.  All matter, however insignificant, has a particular purpose and effect."
  quotes[22] = "In Nature you behold the mother aspect of God, full of beauty, gentleness, tenderness, and kindness."
  quotes[23] = "Come into the silence of solitude, and the vibration there will talk to you through the voice of God."
  quotes[24] = "Arise from dreams of limiting mortal boundaries to the realization of the vastness of the immortal soul within you."
  quotes[25] = "Grateful friends are only the Lord in disguise, looking after His own."
  quotes[26] = "Every symbol in nature is a materialization of the rays of God .... Although we are different in appearance, we are all symbols of the Infinite, of that vast force of God."
  quotes[27] = "Humbly serving all with their beauty, flowers say more to us about God than anything else. Each one brings a message that the Heavenly Father is right here."
  quotes[28] = "Trust more in God. Believe that He who created you will maintain you."
  quotes[29] = "Be a living tree, constantly spreading new growth. The strong-hearted soul says, 'There is sunshine in my life, and I have every chance to throw out shoots and branches of accomplishment.'"
  quotes[30] = "There is a Power that will light your way to health, happiness, peace, and success, if you will but turn toward that Light."
  quotes[31] = "Why take the surface details of life so seriously?  Be drunk with the inner peace of divine realization, whatever your earthly lot."
  quotes[32] = "The flood of peace flows over the boundaries of your mind and moves on in infinite directions."
  quotes[33] = "You naturally love those who are dear to you, and you must learn to give that kind of love to the whole world."
  quotes[34] = "A flower is the smile of God. The fragrance is His hidden presence."
  quotes[35] = "Know that this universe is nothing but a dream bluff of nature to test your consciousness of immortality."
  quotes[36] = "Every day and minute and hour is a window through which you may see eternity."
  quotes[37] = "In humbleness you find a valley of dreams redolent with blossoms of Self-realization."
  quotes[38] = "To be able always to spread an aura of goodness and peace should be the motive of life."
  quotes[39] = "Divine Joy outlasts everything. It is enduring. When all else melts away, that Joy remains."
  quotes[40] = "In meditation...the power of God begins to reflect in the clear waters of your consciousness."
  quotes[41] = "Live more simply, so that you can find time to enjoy the little pleasures of life."
  quotes[42] = "Be enthroned in the castle of goodness....If you continuously add to the good things you can remember, you will in time remember the greatest good...and that is God."
  quotes[43] = "Love...is the promptings of the mother earth to feed her milk to the tender, thirsty roots, and to nurse all life."

  index = Math.floor(Math.random() * quotes.length);
  var quote = quotes[index];
	document.write(quote)
}

