<!-- Minus AutoDato -->


<!-- random quotes -->
numberofquotes=25;
function get_random()
{
  var ranNum= Math.round(Math.random()*(numberofquotes-1));
  return ranNum;
}

function getaQuote()
{
   var whichQuote=get_random();

   var quote=new Array(numberofquotes)
     quote[0]='<FONT SIZE="1" COLOR="#0000FF">"The warrior of light sometimes behaves like water, flowing around the obstacles he encounters" -Paulo Coelho</FONT>';
     quote[1]='<FONT SIZE="1" COLOR="#0000FF">"Things turn out best for the people who make the best out of the way things turn out" -Art Linkletter</FONT>';
     quote[2]='<FONT SIZE="1" COLOR="#0000FF">"Imagination is more important than knowledge" -Albert Einstein</FONT>';   
     quote[3]='<FONT SIZE="1" COLOR="#0000FF">"Love your enemies" -Jesus</FONT>';
     quote[4]='<FONT SIZE="1" COLOR="#0000FF">"The secret of success is making your vocation your vacation" -Mark Twain</FONT>';
     quote[5]='<FONT SIZE="1" COLOR="#0000FF">"Be not forgetful to entertain strangers: for thereby some have entertained angels unawares" -The Bible</FONT>';
     quote[6]='<FONT SIZE="1" COLOR="#0000FF">"Everything has its beauty, but not everyone sees it" -Confucius</FONT>';
     quote[7]='<FONT SIZE="1" COLOR="#0000FF">"The journey of a thousand miles must begin with a single step" -Lao Tzu</FONT>';
     quote[8]='<FONT SIZE="1" COLOR="#0000FF">"He that would have fruit must climb the tree" -Thomas Fuller</FONT>';
     quote[9]='<FONT SIZE="1" COLOR="#0000FF">"Knowledge speaks, but wisdom listens" -Jimi Hendrix</FONT>';
     quote[10]='<FONT SIZE="1" COLOR="#0000FF">"Great Spirit, help me never to judge another until I have walked in his moccasins" -Sioux Indian prayer</FONT>';


     quote[11]='<FONT SIZE="1" COLOR="#0000FF">"God, give us grace to accept with serenity the things that cannot be changed, courage to change the things which should be changed, and the wisdom to distinguish one from the other" -Reinhold Niebuhr</FONT>';
     quote[12]='<FONT SIZE="1" COLOR="#0000FF">"The fragrance always stays in the hand that gives the rose" -Hada Bejar</FONT>';
     quote[13]='<FONT SIZE="1" COLOR="#0000FF">"When the oak is felled the forest echoes with its fall, but a hundred acorns are sown silently by an unnoticed breeze" -Thomas Carlyle</FONT>';
     quote[14]='<FONT SIZE="1" COLOR="#0000FF">"Doubt your doubts" -Joe Batten</FONT>';
     quote[15]='<FONT SIZE="1" COLOR="#0000FF">"Act as if it is impossible to fail" -Ashanti Proverb</FONT>';
     quote[16]='<FONT SIZE="1" COLOR="#0000FF">"The more I know, the more I realize how little I know" -Steven Devoe Harris</FONT>';
     quote[17]='<FONT SIZE="1" COLOR="#0000FF">"A candle loses nothing by lighting another candle" -Father James Keller</FONT>';


     quote[18]='<FONT SIZE="1" COLOR="#0000FF">"Love possesses not nor would it be possessed; For love is sufficient unto love" -Kahlil Gibran</FONT>';

     quote[19]='<FONT SIZE="1" COLOR="#0000FF">"Do not follow where the path may lead. Go instead where there is no path and leave a trail" -Ralph Waldo Emerson</FONT>';
     quote[20]='<FONT SIZE="1" COLOR="#0000FF">"To touch the soul of another human being is to walk on holy ground" -Stephen Covey</FONT>';
     quote[21]='<FONT SIZE="1" COLOR="#0000FF">"All our dreams can come true - if we have the courage to pursue them" -Walt Disney</FONT>';

     quote[22]='<FONT SIZE="1" COLOR="#0000FF">"Let your life lightly dance on the edges of Time like dew on the tip of a leaf" -Tagore</FONT>';

     quote[23]='<FONT SIZE="1" COLOR="#0000FF">"To see a world in a grain of sand And a heaven in a wild flower Hold Infinity in the palm of your hand And Eternity in an hour" -Sir William Blake</FONT>';

 quote[24]='<FONT SIZE="1" COLOR="#0000FF">"A single sunbeam is enough to drive away many shadows" -St. Francis of Assisi</FONT>';

 quote[25]='<FONT SIZE="1" COLOR="#0000FF">"Spirit does not call upon the qualified, spirit qualifies the called" -Christine Ferry</FONT>';

 quote[26]='<FONT SIZE="1" COLOR="#0000FF">"All you need is Love" -The Beatles</FONT>';

 quote[27]='<FONT SIZE="1" COLOR="#0000FF">"If you want to change the world, start with yourself" -Karen Kay</FONT>';

 quote[28]='<FONT SIZE="1" COLOR="#0000FF">"Those who speak do not know, and those who know do not speak!" -Janet Morgan</FONT>';

quote[29]='<FONT SIZE="1" COLOR="#0000FF">"Start your day with LOVE, Fill your day with LOVE End your day with LOVE " -Sai Baba</FONT>';


   document.write(quote[whichQuote]);
  }
