
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Attitude Is a little thing that makes a big difference";
Quotation[1] = "Believe and succeed; The key to happiness is having dreams…the key to success is making dreams come true!";
Quotation[2] = "Cherish today. Yesterday is but a dream. Tomorrow, a vision hope. Look to this day for it is life!";
Quotation[3] = "Courage; Do not follow where the path may lead…. Go instead where there is no path and leave a trail!";
Quotation[4] = "Dedication; What counts is not the number of hours you put in….. But what you put in the hours!";
Quotation[5] = "Do it now; You become successful the moment you start moving toward a worthwhile goal!";
Quotation[6] = "Imagination; A mind once stretched by a new idea, never regains its’ original dimensions!";
Quotation[7] = "Live today; Cherish your yesterdays, dream your tomorrows, but live your today’s!";
Quotation[8] = "Opportunity; In life what sometimes appears to be the end is really a new beginning!";
Quotation[9] = "Perseverance; When you have a true desire to play, excelling is no longer work!";
Quotation[10] = "Excellence; The best way to predict the future is to create it!";
Quotation[11] = "Opportunity; Victory is what happens when 10 thousand hours of preparation meet with one moment of opportunity!";
Quotation[12] = "Determination; The race is not always to the swift…. But to those who keep on running!";
Quotation[13] = "Opportunity; Some people dream of success, while others wake up and work hard at it!";
Quotation[14] = "Success; Success is a journey, not a destination!";
Quotation[15] = "Team work; Team work is the fuel that allows common people to achieve uncommon results!";
Quotation[16] = "Vision;  nothing ever happens unless first a dream!";
Quotation[17] = "Attitude; A bump in the road is either an obstacle  to be fought or an opportunity to be enjoyed….. Its all up to you!";
Quotation[18] = "Believe and succeed; If you have the courage to begin then you have the courage to finish!";
Quotation[19] = "Challenge; Accept the challenges so that you can enjoy the exhilaration of the victory!";
Quotation[20] = "Change; A bend in the road is not the end of the road…. Unless you fail to turn!";
Quotation[21] = "Commitment; To be a winner all you need to give is all that you have!";
Quotation[22] = "Competition; The difference between a successful person and others is not lack of strength, not lack of knowledge but rather a lack of will!";
Quotation[23] = "Courage; We take risks not to escape life, but to prevent life from escaping us!";
Quotation[24] = "Dare; Your attitude almost always determines your altitude in life!";
Quotation[25] = "Determination; You make up your mind before you start that sacrifice is part of the package!";
Quotation[26] = "Effort; I firmly believe that a mans finest hour is the moment when he has worked his heart out in good cause, and lies exhausted on the field of battle victorious!";
Quotation[27] = "If you always do what you have always done……then you will always get what you have always got!";
Quotation[28] = "Leader; You can not discover new oceans unless you have the courage to lose sight of the shore!";
Quotation[29] = "Make it happen; Sometimes there is no next time, no second chance, no time out. Sometimes its now or never!";
Quotation[30] = "Perseverance; Sometimes success is just a mater of hanging on!";
Quotation[31] = "Quality; The race for quality has no finish line!";
Quotation[32] = "Success; That harder I work the luckier I become!";
Quotation[33] = "Attitude; Attitudes are contagious…. Is yours worth catching!";
Quotation[34] = "Belief; Courage dose not always roar. Sometimes it is the voice at the end of the day saying, i will try again tomorrow!";
Quotation[35] = "Perseverance; Our destiny is shaped by our thoughts and our actions. We can not direct the wind, but we can adjust the sails!";
Quotation[36] = "Competition; However said its not whether you win or lose that counts, probably lost!";
Quotation[37] = "Some men see things the way they are and say why??? I dream things that never were and say why not!";
Quotation[38] = "Focus; Obstacles are these things that you see when you fail to focus on your goals!";
Quotation[39] = "Growth; Small opportunities are often the begging of great achievements!";
Quotation[40] = "Leadership; Leaders are like eagles, they don’t flock, you find them one at a time! Lead, follow or get out of the way!";
Quotation[41] = "Opportunity; Failure is only the opportunity to begin again, this time more wisely!";
Quotation[42] = "Success; The successful man is the average man focused!!";
Quotation[43] = "Persistence; You haven’t failed until you quit trying!";
Quotation[44] = "Determination; There is no chance, no fate, no destiny there is no way that anyone will beat you if you have a determined soul!";
Quotation[45] = "Determination; You make up your mind before you start that sacrifice is part of the package!";
Quotation[46] = "Listen to their words and you can see their future!";
Quotation[47] = "Blame is a lazy man’s wages!!";
Quotation[48] = "Where your Attention Goes…….. Your energy flows!!";
Quotation[49] = "Insight, plus hindsight equals Foresight!!";
Quotation[50] = "We know who we are, but know not what we may be!!";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

