// Daily Quote for Envision Counselling
n=0;
var today = new Date()
var start_date = new Date("July 24, 2001")
var msPerDay = 24*60*60*1000;
var days = (today.getTime()-start_date.getTime())/msPerDay;
days = Math.floor(days); 
// Quote database------------------------------------
var q = new Array()
q[n++]= "And as we let our own light shine, we unconsciously give other people permission to do the same.</br><i> Marianne Willamson</i>"
q[n++]= "If you do not tell the truth about yourself you cannot tell it about other people.</br><i> Virginia Woolfe</i>"
q[n++]= "Until you make peace with who you are, you&#8217;ll never be content with what you have.</br><i> Doris Mortman</i>"
q[n++]= "Your sacred space is where you can find yourself again and again.</br><i> Joseph Campbell</i>"
q[n++]= "It just seems clear to me that as long as we are all here, it&#8217;s pretty clear that the struggle is to share the planet, rather than divide it.</br><i> Alice Walker</i>"
q[n++]= "Faith is taking the first step even when you don&#8217;t see the whole staircase.</br><i> Martin Luther King Jr</i>"
q[n++]= "Nobody is as powerful as we make them out to be.</br><i> Alice Walker</i>"
q[n++]= "The practice of forgiveness is our most important contribution to the healing of the world.</br><i> Marianne Williamson</i>"
q[n++]= "Each man has his own vocation; his talent is his call. There is one direction in which all space is open to him.</br><i> Ralph Waldo Emerson</i>"
q[n++]= "Tell me to what you pay attention and I will tell you who you are.</br><i> Jose Ortega y Gasset</i>"
q[n++]= "The best and most beautiful things in the world cannot be seen, nor touched ... but are felt in the heart.</br><i> Helen Keller</i>"
q[n++]= "Nonviolence is a weapon of the strong.</br><i> Mahatma Gandhi</i>"
q[n++]= "We don&#8217;t see things as they are, we see them as we are.</br><i> Anais Nin</i>"
q[n++]= "Turn your wounds into wisdom.</br><i> Oprah Winfrey</i>"
q[n++]= "Only through our connectedness to others can we really know and enhance the self. And only through working on the self can we begin to enhance our connectedness to others.</br><i> Harriet Goldhor Lerner </i>"
q[n++]= "The ultimate measure of a man is not where he stands in moments of comfort and convenience, but where he stands at times of challenge and controversy.</br><i> Martin Luther King Jr</i>"
q[n++]= "What lies behind us and what lies before us are small matters compared to what lies within us.</br><i> Oliver Wendell Holmes</i>"
q[n++]= "Life is a series of collisions with the future; it is not the sum of what we have been, but what we yearn to be.</br><i> Jose Ortega y Gasset</i>"
q[n++]= "Learning is not child&#8217;s play, we cannot learn without pain.</br><i> Aristotle</i>"
q[n++]= "Remember always that you not only have the right to be an individual, you have an obligation to be one.</br><i> Eleanor Roosevelt</i>"
q[n++]= "Ask for what you want and be prepared to get it.</br><i> Maya Angelou</i>"
q[n++]= "Happiness is when what you think, what you say, and what you do are in harmony.</br><i> Mahatma Gandhi</i>"
q[n++]= "You don&#8217;t get to choose how you&#8217;re going to die. Or when. You can decide how you&#8217;re going to live now.</br><i> Joan Baez </i>"
q[n++]= "Faith is not belief. Belief is passive. Faith is active.</br><i> Edith Hamilton</i>"
q[n++]= "The unexamined life is not worth living.</br><i> Socrates</i>"
q[n++]= "I believe that every single event in life happens in an opportunity to choose love over fear.</br><i> Oprah Winfrey</i>"
q[n++]= "Living never wore one out so much as the effort not to live.</br><i> Anais Nin</i>"
q[n++]= "I was not looking for my dreams to interpret my life, but rather for my life to interpret my dreams.</br><i> Susan Sontag</i>"
q[n++]= "Freedom is what you do with what&#8217;s been done to you</br><i> Jean-Paul Satre</i>"
q[n++]= "Friendship with oneself is all important because without it one cannot be friends with anybody else in the world.</br><i> Eleanor Roosevelt</i>"
q[n++]= "Be the change you want to see in the world.</br><i> Mahatma Gandhi</i>"
// Quote database------------------------------------

document.write(q[days%q.length]);
 

