// JavaScript Document
<!--
		var today_obj=new Date()
		var today_month=today_obj.getMonth()+1

		var tips=new Array()
		//Header above the quote and input an image if you want one
		var tiptitle='<p style="margin-bottom:10px;"><font style="font-weight: bold; font-size:13px; color:#3333CC;">Quote of the month:</font></p>'

		//Input your quotes.  One for each month
		tips[1]='<p class="standardtext">One does what one is; one becomes what one does.  ~Robert von Musil,<br> <em>Kleine Prosa</em></p>'
		tips[2]='<p class="standardtext">Often, what seems an impossible climb is just a staircase without the steps drawn in.  ~Robert Brault</p>'
		tips[3]='<p class="standardtext">Success isn&prime;t a result of spontaneous combustion.  You must set yourself on fire.  ~Arnold H. Glasow</p>'
		tips[4]='<p class="standardtext">There are many wonderful things that will never be done if you do not do them.  ~Charles D. Gill</p>'
		tips[5]='<p class="standardtext">It is not the mountain we conquer but ourselves.  ~Edmund Hillary</p>'
		tips[6]='<p class="standardtext">You must have long-range goals to keep you from being frustrated by short-range failures.  ~Charles C. Noble</p>'
		tips[7]='<p class="standardtext">Dreams are free, so free your dreams.<br>~Astrid Alauda</p>'
		tips[8]='<p class="standardtext">I am always doing that which I cannot do, in order that I may learn how to do it.  ~Pablo Picasso</p>'
		tips[9]='<p class="standardtext">The rung of a ladder was never meant to rest upon, but only to hold a man&prime;s foot long enough to enable him to put the other somewhat higher.  ~Thomas Henry Huxley, <em>Life and Letters of Thomas Huxley</em></p>'
		tips[10]='<p class="standardtext">Obstacles are those frightful things you see when you take your eyes off your goal.  ~Henry Ford</p>'
		tips[11]='<p class="standardtext">Your work is to discover your world and then with all your heart give yourself to it.  ~Buddha</p>'
		tips[12]='<p class="standardtext">To the question of your life you are the answer, and to the problems of your life you are the solution.<br>~Joe Cordare</p>'

		document.write(tiptitle)
		document.write(tips[today_month])

		//-->