
<!-- Daily quotes
function get_date(maxNum)

{

  today=new Date();

  t=today.getDate()

  return t;

}



function dateQuote()

{

  var maxQuotes=31;

  var dQuote=get_date(maxQuotes);

  dQuote--;



  var quote=new Array(maxQuotes)

  quote[0]="'there's no better time to start than right now'";

  quote[1]="'if you wait until tomorrow, you've lost a day'";

  quote[2]="'you are where you are now, because that's where you choose to be'";   

  quote[3]="'change your thoughts to change your life'";

  quote[4]="'one small step at a time will get you there'";

  quote[5]="'you must believe before you can achieve'";

  quote[6]="'persistence always beats resistence'";

  quote[7]="'you are what you think you are'";

  quote[8]="'your beliefs may be holding you back'";

  quote[9]="'life is a journey, not a single destination'";

  quote[10]="'act enthusiastic and you'll be enthusiastic'";

  quote[11]="'action turns dreams into realities'";

  quote[12]="'you are free to choose your thoughts'";   

  quote[13]="'setbacks are only stepping stones on the path of success'";

  quote[14]="'who says it can't be done - question your beliefs'";

  quote[15]="'you can change direction any time you want to'";

  quote[16]="'plan your day the night before'";

  quote[17]="'what are you afraid of'";

  quote[18]="'pain is inevitable, but misery is optional'";

  quote[19]="'if you think you can do a thing or think you can't, you're right'";

  quote[20]="'the world owes you nothing, it was here first'";

  quote[21]="'to see is to know; to desire to be able to; to dare is to have'";

  quote[22]="'life's not the way it's supposed to be - it's the way it is'";   

  quote[23]="'things do not change - we do'";

  quote[24]="'don't find fault - find a remedy'";

  quote[25]="'the lowest ebb is the turn of the tide'";

  quote[26]="'destiny is not a matter of chance - it's a matter of choice'";

  quote[27]="'sow a thought and you reap an act'";

  quote[28]="'you draw nothing from the bank of life except what you deposit in it'";

  quote[29]="'first we form habits - then they form us'";

  quote[30]="'its what you learn after you know it all that counts'";

   

document.write(quote[dQuote]);

}



dateQuote();

//Script by Petter Terenius, www.noteheads.com
//-->
