// JavaScript Document

quote = new Array();

quote[0] = "Honey I forgot to duck... Ronald Reagan";
quote[1] = "I am not worried about the deficit. It is big enough to take care of itself... Ronald Reagan";
quote[2] = "He that is not with me is against me... Jesus Christ";
quote[3] = "It isn't the people you fire who make your life miserable, it's the people you don't... Harvey MacKay";
quote[4] = "Gratitude lasts as long as it takes the words 'I'll be eternally grateful to vanish into thin air... Harvey MacKay";
quote[5] = "If you want to double your success ratio, you have to double your failure ratio... Harvey MacKay";
quote[6] = "Maybe winning isn't everything, but it sure comes way ahead of whatever is second... Vince Lombardi";
quote[7] = "Winning is a habit... Vince Lombardi";
quote[8] = "Each of us tends to think we see things as they are, that we are objective. But this is not the case. We see the world, not as it is, but as we are-or as we are conditioned to see it.";
quote[9] = "Effective people are not problem-minded; they're opportunity minded. They feed opportunities and starve problems.";
quote[10] = "Without involvement, there is no commitment. Mark it down, asterisk it, circle it, underline it. No involvement, no commitment.";
quote[11] = "Be Proactive - Taking initiative does not mean being pushy, obnoxious, or aggressive. It does mean recognizing our responsibility to make things happen.";
quote[12] = "Begin With the End in Mind - This habit is based on imagination-the ability to envision, to see the potential, to create with our minds what we cannot at present see with our eyes...";
quote[13] = "Put First Things First - Create a clear, mutual understanding of what needs to be accomplished, focusing on what, not how; results not methods. Spend time. Be patient. Visualize the desired result.";
quote[14] = "Think Win-Win - Win-Win is a frame of mind that constantly seeks mutual benefit in all human interactions. Win-Win means that agreements or solutions are mutually beneficial and satisfying.";
quote[15] = "Synergize - Synergy works; it's a correct principle. It is the crowning achievement of all the previous habits. It is effectiveness in an interdependent reality-it is teamwork, team building, the development of unity and creativity with other human beings.";
quote[16] = "Sharpen the Saw - This is the habit of renewal...It circles and embodies all the other habits. It is the habit of continuous improvement...that lifts you to new levels of understanding and living each of the habits.";
quote[17] = "Live your life and forget your age... Norman Vincent Peale";
quote[18] = "100% of the shots you don't take don't go in.... Wayne Gretzky";
quote[19] = "An eye for eye only ends up making the whole world blind... M.K. Gandhi";
quote[20] = "The only place where success comes before work is in the dictionary... Donald Kendall";
quote[21] = "Three Rules of Work: Out of clutter find simplicity, From discord find harmony, In the middle of difficulty lies opportunity... Albert Eistein";
quote[22] = "May you - Work like you don't need the money, love like you've never been hurt, dance like no-one is watching, screw like it's being filmed, and drink like a true Irishman";
quote[23] = "Satisfaction lies in the effort, not in the attainment, full effort is full victory... Mahatma Gandi";
quote[24] = "One of the symptoms of an approaching nervous breakdown is the belief that one's work is terribly important... Bertrand Russell";
quote[25] = "Not only is he ambidextrous, but he can throw with either hand... Duffy Daugherty";
quote[26] = "I was under medication when I made the decision to burn the tapes... Richard Nixon";
quote[27] = "I love California. I practically grew up in Phoenix... Dan Quayle";
quote[28] = "I have opinions of my own -- strong opinions --but I don't always agree with them... George W. Bush"; 

index = Math.floor(Math.random() * quote.length);

document.write(quote[index]);

