function RunQuotes(){

//store the quotations in arrays

images = new Array();

images[0] = "' If you begin to understand what you are without trying to change it,<br>then what you are undergoes a transformation.'<br>~ J. Krishnamurti";

images[1] = "' Life is movement,<br>The more life there is, the more flexibility there is.<br>The more fluid you are, the more you are alive...'<br>~ Arnaud Desjardins";

images[2] = "' In deep meditation the flow of concentration is continuous like the flow of oil. '<br>~ Patanjal";

images[3] = "' Each of us is here for a brief sojourn; for what purpose he knows not, though he senses it.<br>But without deeper reflection one knows from daily life that one exists for other people.'<br>~ Albert Einstein   ";

images[4] = "' Yoga serves the individual, and does so through inviting transformation rather than by giving information. '<br>~ T.K.V. Desikachar ";

images[5] = "' Inhale, and God approaches you.  Hold the inhalation, and God remains with you.<br>Exhale, and you approach God.  Hold the exhalation, and surrender to God.'<br>~ Krishnamacharya";

images[6] = "' What is tender is sublime, and what is strong and rigid is close to death.'<br>~ lao tzu";

images[7] = "' Imagination is everything. It is the preview of life's coming attractions.'<br>~ Albert Einstein";

images[8] = "' Wisdom begins in Wonder'<br>~Socrates";

images[9] = "' Everyone takes the limits of his own vision for the limits of the world'<br>~ Arthur Schopenhauer";

images[10] = "' Wealth is the ability to fully experience life.'<br>~ Henry David Thoreau";

images[11] = "' Beauty is eternity gazing at itself in a mirror.<br>But you are eternity and you are the mirror.'<br>~ Khalil Glibran";

images[12] = "' if the person is seeking God, much more is her beloved seeking her'.  Living Flame. St John of the Cross";

images[13] = "' I have often thought it would be a blessing if each human being were stricken blind and deaf for a few days during adult life.  Darkness would make one more appreciative of sight and silence would teach one the joys of sound.'<br>~  Helen Keller";

images[14] = "' only the stunned and bewildered ever glimpse the throne'<br>~ Rumi";

images[15] = "' The past is over.  Forgiveness means giving up all hope of a better past.'<br>~ Jack Kornfield";

images[16] = "' We rarely hear the inward music, but were all dancing to it nevertheless'<br>~ Rumi";

images[17] = "' Let love lead your soul.<br>Make it a place to retire to,<br>a kind of cave, a retreat<br>for the deep core of being.'";

images[18] = "' Only when you drink from the river of silence, shall you indeed sing.<br>And when you have reached the mountain top,then you shall begin to climb.<br>~ The prophet,Gibran";

images[19] = "'The intellect is a wonderful servant and the intuitive and creative mind, a divine gift.<br>Unfortunately society reveres the servant and has forgotten the gift.'";

images[20] = "'Know Thyself'";

images[21] = "'Our deepest fears are like dragons guarding our deepest treasure.'<br>~ Rainier Maria Rilke";

images[22] = "'In the depth of winter, I finally learned that within me there lay an invincible summer'<br>~ Albert Camus";

images[23] = "'When you follow your bliss... doors will open where you would not have thought there would be doors, and where there wouldn't be a door for anyone else'<br>~ Joseph Campbell";

images[24] = "'There is no Way to Happiness. Happiness is the Way.'<br>~ Sakyamuni Buddha";

images[25] = "'Our deepest fears are like dragons guarding our deepest treasure.'<br>~ Rainier Maria Rilke";

images[26] = "'Thousands of candles can be lighted from a single candle, and the life of the candle will not be shortened. Happiness never decreases by being shared.'<br> ~ The Buddha";

images[27] = "'To understand everything is to forgive everything.'<br>~ Buddha";

images[28] = "'The soul would have no rainbow, if the eyes had no tears'<br>~ North American Proverb";

images[29] = "'Seek spiritual riches within. What you are is far greater than anyone or anything else you have ever yearned for.'<br>~ Paramahansa Yogananda";

images[30] = "'we maintain our world with our inner dialogue.'";

images[31] = "'Only that day dawns to which we are awake.<br>~ Thoreau'";

images[32] = "'Whatever you pray about and ask for,believe that you have received it and it will be yours'<br>~ Jesus";

images[33] = "'Blessed are the pure in heart, for they will see God.' <br>~ Jesus";

images[34] = "'You are the light of the world. .. let your light shine before others'<br>~ Jesus";

images[35] = "'All who exalt themselves will be humbled, and all who humble themselves will be exalted.'<br>~ Jesus";

images[36] = "'there is nothing hidden, except to be disclosed; nor is anything secret, except to come to light.'<br>~ Jesus";

images[37] = "'Come away to a deserted place all by yourselves and rest a while.'<br>~ Jesus";

images[38] = "'Meditation is just being delighted in your own presence;<br> meditation is a delight in your own being.'<br>~ Osho";

images[39] = "'Whatever you accept completely will take you to peace including<br> the acceptance that you cannot accept that you are in resistance.<br> Leave Life alone. Let it be'<br>~ Eckhart Tolle";

images[40] = "'Where there is ruin, there is hope for a treasure.'<br>~ Rumi";

images[41] = "'Everyone knows the drop resides in the ocean but few people know the ocean resides in the drop'<br>~ Maharaji";

images[42] = "'What we are looking for is what is looking. ' <br>~ St. Francis of Assisi";

images[43] = "'To the dull mind nature is leaden. To the illumined mind the whole world burns and sparkles with light.' <br>~ Emerson";

images[44] = "'Our essence is one of truth, beauty joy peace, love and freedom. All these emerge from beyond the mind.'<br>";

images[45] = "'Until we love ourselves there is no hope of finding ourselves.' <br>~ Henry Miller";

images[46] = "'We can bring a heart of understanding and compassion to a world that needs it so much.' <br>~ Jack Kornfield";

images[47] = "'In the depth of winter, I finally learned that within me there lay an invincible summer.' <br>~ Albert Camus";

images[48] = "'Don't underestimate the value of Doing Nothing, of just going along, listening to all the things you can't hear, and not bothering.' <br>~ A.A. Milne";
index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

}