// 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">Always bear in mind that your own resolution to succeed is more important than any others.<br>~ Abraham Lincoln</p>'
		tips[2]='<p class="standardtext">Act as if what you do makes a difference. It does.<br>~ William James</p>'
		tips[3]='<p class="standardtext">We are made wise not by the recollection of the past but by the responsibility for our future.<br>~ George Bernard Shaw</p>'
		tips[4]='<p class="standardtext">Intelligence is really a kind of taste: taste in ideas.<br>~ Susan Sontag</p>'
		tips[5]='<p class="standardtext">I’ve failed over and over and over again in my life and that is why I succeed.<br>~ Michael Jordan</p>'
		tips[6]='<p class="standardtext">The ladder of success is best climbed by stepping on the rings of opportunity.<br>~ Ayn Rand</p>'
		tips[7]='<p class="standardtext">The art of being wise is the art of knowing what to overlook.<br>~ William James</p>'
		tips[8]='<p class="standardtext">Try not to become a man of success but rather try to become a man of value.<br>~ Albert Einstein</p>'
		tips[9]='<p class="standardtext">Success is going from failure to failure without the loss of enthusiasm.<br>~ Winston Churchill</p>'
		tips[10]='<p class="standardtext">You have to think anyway, so why not think big?<br>~ Donald Trump</p>'
		tips[11]='<p class="standardtext">If you care enough for a result, you will most certainly attain it.<br>~ William James</p>'
		tips[12]='<p class="standardtext">The true sign of intelligence is not knowledge but imagination.<br>~ Albert Einstein</p>'

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

		//-->
