
function get_date(maxNum)
{
  today=new Date();
  t=today.getDate()
  return t;
}

function datethought()
{
  var maxthought=31;
  var dthought=get_date(maxthought);
  dthought--;



  var thought=new Array(maxthought)

  thought[0]="Document your challenges and obstacles. A good leader should draw a map that others can follow";
 
  thought[1]="Confidence is the most important single factor in this game, and no matter how great your natural talent, there is only one way to obtain and sustain it: work.";

  thought[2]="Nobody succeeds beyond his or her wildest expectations unless he or she begins with some wild expectations";

  thought[3]="When the obstacles become stimulants and self-motivators, the failures will obviously transform themselves into success stories "; 
   
  thought[4]="Any successful journey begins by packing your luggage full of imagination";

  thought[5]="Never give up, never give in, and when the upper hand is ours, may we have the ability to handle the win with the dignity that we absorbed the loss";

  thought[6]="Courage is almost a contradiction in terms. It means a strong desire to live taking the form of a readiness to die";

  thought[7]="We are not permitted to choose the frame of our destiny. But what we put into it is ours";

  thought[8]="Tell a person they are brave and you help them become so";

  thought[9]="Even if I fall, I fall like a seed to germinate but not like a leaf to die";

  thought[10]="To make promise into reality, we need commitment";

  thought[11]="Think Big, Act Big, Dream Big, Believe Big, and the results will be BIG"; 
  
  thought[12]="I've worked too hard and too long to let anything stand in the way of my goals. I will not let my teammates down, and I will not let myself down"; 
  
  thought[13]="No victor believes in chance";

  thought[14]="Leaders don't force people to follow-they invite them on a journey";

  thought[15]="Note how good you feel after you have encouraged someone else. No other argument is necessary to suggest that never miss the opportunity to give encouragement";

  thought[16]="Be real, genuine, and authentic. That way there can be no threat; you are beyond judgment. It's safe to be defenseless";   

  thought[17]="There is always hope when people are forced to listen to both sides";

  thought[18]="Opportunity's favorite disguise is trouble";

  thought[19]="If you can't fly, then run.<br>If you can't run, then walk. <br>If you can't walk, then crawl. <br>But whatever you do, keep moving";

  thought[20]="Hope is the companion of power, and the mother of success; for who so hopes strongly, has within him the gift of miracles";

  thought[21]="Even if I fall, I fall like a seed to germinate but not like a leaf to die";

  thought[22]="Nothing bad can happen to me cause there is always something worse";

  thought[23]=" In the face of uncertainty, there is nothing wrong with hope";

  thought[24]="If the only prayer you said in your whole life was, 'thank you,' that would suffice.";

  thought[25]="A person is a product of his own thoughts. Believe big and grow big";

  thought[26]="One man with courage makes a majority";

  thought[27]="Being challenged is inevitable, being defeated is optional! NEVER GIVE UP";

  thought[28]="You cannot succeed by yourself. It's hard to find a rich hermit";

  thought[29]="Restlessness and discontent are the first necessities of progress";
  
  thought[30]="A leader is best when people barely know he exists. Not so good when people obey and acclaim him. Worse when they despise him. But of a good leader who talks little when his work is done, his aim fulfilled, the people will say, 'We did it ourselves";

  thought[31]=" Fear is never a reason for quitting; it is only an excuse";   

  

   

document.write(thought[dthought]);

}
datethought();



