  function dcQuote(varQuote,varAuthor) {
    this.quote = varQuote;
    this.author = varAuthor; }
  var quotes = new Array();
  var cntQuotes = 0;
  quotes[cntQuotes++] = new dcQuote("The only courage that matters, is the one that gets you from one moment to the next.", "Mignon Mclaughlin");
  quotes[cntQuotes++] = new dcQuote("Don't walk in front of me, I may not follow. Don't walk behind me, I may not lead. Just walk beside me and be my friend.", "");
  quotes[cntQuotes++] = new dcQuote("It's only when we truly know and understand that we have limited time on earth, and that we have no way of knowing when our time is up, we will begin to live each day to the fullest, as if it was the only one we had.", "Elizabeth Kubler Ross");
  quotes[cntQuotes++] = new dcQuote("There is only one obvious lesson about other peoples' grief - to belief what they say about it.", "Polly Toynbee");
  quotes[cntQuotes++] = new dcQuote("Far more people are affected by the disease than infected by it.", "Anderson");
  quotes[cntQuotes++] = new dcQuote("We cannot change the direction of the wind, but we can adjust our sails.", "");
  quotes[cntQuotes++] = new dcQuote("The single most important requirement is to have compassion for another persons struggle to live beyond the confines of the disease, and the willingness and commitment to walk with this person and his/her significant others.", "Alta Van Dyk");
  quotes[cntQuotes++] = new dcQuote("Learn your theories well, but lay them aside when you touch the reality of a living soul.", "Carl Jung");
  quotes[cntQuotes++] = new dcQuote("Too often we underestimate the power of touch, a smile, a kind word, a listening ear, an honest compliment, or the smallest act of caring, all of which have the potential to turn a life around. It's overwhelming to consider the continuous opportunities there are to make our love felt.", "");
  quotes[cntQuotes++] = new dcQuote("Silence could be said to be the ultimate province of trust; it is the place where we trust others to understand the things we do not say, where we trust a higher harmony to assert itself.", "");
  quotes[cntQuotes++] = new dcQuote("People are like stained-glass windows. They sparkle and shine when the sun is out, but when the darkness sets in; their true beauty is revealed only if there is a light from within.", "Elizabeth Kubler Ross");
  quotes[cntQuotes++] = new dcQuote("Learn to touch the silence within yourself and know that everything in this life has a purpose.", "Elizabeth Kubler Ross");
  quotes[cntQuotes++] = new dcQuote("There are no mistakes, no coincidences, all events are blessings given to us to learn from. The ultimate lesson all of us have to learn is unconditional love, which includes not only others but ourselves as well.", "Elizabeth Kubler Ross");
  cntQuotes = parseInt(Math.random()*quotes.length);
  document.write("<div class=\"quote\">" + quotes[cntQuotes].quote + "<span class=\"author\">- " + quotes[cntQuotes].author + "</span></div>");
