var Quotation=new Array()

Quotation[0] = "By focusing on a few believable goals;<br />you will reap many unbelievable rewards.";
Quotation[1] = "Three simple words separate the most<br />successful individuals from others - Never Give Up!- ";
Quotation[2] = "Leadership is the ability<br />to transform vision into reality.";
Quotation[3] = "The choices we make are the<br />true measure of our character.";
Quotation[4] = "Each challenging step you take is<br />a footprint on the path to success.";
Quotation[5] = "By taking the time to work smart;<br />you will decrease the time to work hard.";
Quotation[6] = "Courage is the realization that you may not win;<br />yet you continue to persevere.";
Quotation[7] = "The softest whisper can draw the most attention.";
Quotation[8] = "Embrace each challenge in life as an opportunity<br />to practice your problem-solving skills.";
Quotation[9] = "Faith is taking the first step even when<br />you don't see the whole staircase.";
Quotation[10] = "The pursuit of knowledge is the catalyst of success.";
Quotation[11] = "Excellence is raising the bar;<br />Genius is re-creating the bar.";
Quotation[12] = "The perception of truth is often a flexible concept.";
Quotation[13] = "Believing in yourself is the<br />first step to personal fullfillment.";
Quotation[14] = "Positive thinking, realistic goals, & sustained effort<br />can take you anywhere you want to go.";
Quotation[15] = "It often takes many years of hard work<br />to become an overnight success.";
Quotation[16] = "Improving the world within you<br />is the first step to improving the world outside.";
Quotation[17] = "Use your fear to prepare you;<br />Use your courage to move you positively forward.";
Quotation[18] = "Ideas are a dime a dozen;<br />Desire, action, & perseverance are priceless."; 
Quotation[19] = "Take one positive action right now that will have you<br />looking back on this moment with gratitude and satisfaction."; 
Quotation[20] = "Success depends on your direction,<br />not on your position."; 
Quotation[21] = "The attitude of success depends upon our disposition,<br />and not upon our circumstances."; 
Quotation[22] = "Success comes not from what we think,<br /> but from what we actually do.";
Quotation[23] = "Your daily actions present a clear indication<br />of your true priorities.";  
Quotation[24] = "The only job where you begin at the top<br />-- is digging a hole.";  
Quotation[25] = "Failure is succeeding at finding out<br />what doesn't work.";  

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();