	var quote = new Array();
	Stamp = new Date();
	today = Stamp.getDate();
	
	
	//Write the quote that should appear on each day.  Keep in mind that in javascript, you start with zero instead of one. So, quote[0]=day 1 of the month
	//If a quote has "quotes", YOU MUST INCLUDE A BACKWARD-SLASH BEFORE THE QUOTE! Example: quote[1]"<p>&nbsp;\"Today is a great day!\"</p><br />"
	
	
	//template: quote[30]="<p>&nbsp;Day 31</p><p>&nbsp;~Author</p><br />"
	
	//HTML codes for characters. If one of these puctucation characters comes up in a quote, simply replace it with the HTML code.
	//Example: &#34;Go get Mark&#39;s milk.&#34;  -- Will read out: "Go get Mark's milk."
			//quotation mark: &#34;
			//apostrophe: &#39;
			
	//Note: quote[0] is day 1; quote[12] is day 13

	quote[0]="<p>&nbsp;My Thoughts drive my actions. My actions reflect my spiritual health.</p><br />"
	quote[1]="<p>&nbsp;Turned out I was right not to place faith in me, but rather to place the faith in my Higher Power.</p><br />"
	quote[2]="<p>&nbsp;Change will happen when the pain of staying the same outweighs the pain of change.</p><br />"
	quote[3]="<p>&nbsp;We cannot trust our emotions or feelings. They come from a sicker time. Rather, we can place our trust in our Higher Power.</p><br />"
	quote[4]="<p>&nbsp;Sometimes the things we fear the most will hurt us the least. Other times, the fear itself will provide the pain.</p><br />"
	quote[5]="<p>&nbsp;Sometimes frustration causes us to want to give up, to walk away or to surrender. Remember, don&#39;t give up five minutes before the miracle. </p><br />"
	quote[6]="<p>&nbsp;I find that the things I think about all the time, I talk about all the time. Why would I be surprised, when these are the things that come about?</p><br />"
	quote[7]="<p>&nbsp;I am only responsible for my effort, not for the outcome of my effort.</p><br />"
	quote[8]="<p>&nbsp;Serenity can be the by-product of doing the next right things. </p><br />"
	quote[9]="<p>&nbsp;Expectations are the kissing cousins of resentments.</p><br />"
	quote[10]="<p>&nbsp;In some ways dignity carries the highest personal cost. Lowering my standards requires a price I canŐt afford to pay.</p><br />"
	quote[11]="<p>&nbsp;Responsibility means being able to respond</p><br />"
	quote[12]="<p>&nbsp;If I name it, I can claim it. Then, I can tame it. Acknowledge what is going on!</p><br />"
	quote[13]="<p>&nbsp;Habit is what happens after the pleasure is gone.</p><br />"
	quote[14]="<p>&nbsp;Practice does not ever make perfection. Practice makes progress.</p><br />"
	quote[15]="<p>&nbsp;Arrogance is not a tool of Sobriety.</p><br />"
	quote[16]="<p>&nbsp;We strive to say what we mean, without saying it mean.</p><br />"
	quote[17]="<p>&nbsp;Recovery is a broom that sweeps in all directions.</p><br />"
	quote[18]="<p>&nbsp;Perception is seeing the present with images formed from the past.</p><p>~Edward Bear</p><br />"
	quote[19]="<p>&nbsp;Be the change you wish to see in the world.</p><p>~Gandhi<br />"
	quote[20]="<p>&nbsp;I cannot get and stay sober by myself, anymore than I can play ping-pong by myself.</p><br />"
	quote[21]="<p>&nbsp;Living sober has beaten me into a state of reasonableness.</p><p>~Edward Bear</p><br />"
	quote[22]="<p>&nbsp;It is the empty space within, that makes the vessel useful.</p><p>~Tao</p><br />"
	quote[23]="<p>&nbsp;Let go of everything you're holding on to. Now, let go of everything else.</p><br />"
	quote[24]="<p>&nbsp;I have never been hurt by what I have not said.</p><p>~Calvin Coolidge</p><br />"
	quote[25]="<p>&nbsp;The time is always right, to do what is right.</p><p>~Martin Luther King, Jr.</p><br />"
	quote[26]="<p>&nbsp;Only he who knows what is enough, will ever have enough.</p><p>~Tao</p><br />"
	quote[27]="<p>&nbsp;Recovery is overcoming the fear of living.</p><br />"
	quote[28]="<p>&nbsp;My prayer: Higher Power please direct me and cause me to react responsibly.</p><br />"
	quote[29]="<p>&nbsp;We climb the ladder of life best by looking up, not down. We can change nothing by looking behind us, only by looking ahead.</p><br />"
	quote[30]="<p>&nbsp;So often we search out the impossible and throw ourselves into trying to do it.</p><br />"
	
	//Write the quote that matches with the current date.
	document.write(quote[today-1])

