var quotes = new Array();
var authors = new Array();
quotes[0] = "Do not let what you cannot do interfere with what you can do."; 
authors[0] = "John Wooden"
quotes[1] = "Success is the sum of small efforts, repeated day in and day out.";
authors[1] = "Robert Collier";
quotes[2] = "Success is never wondering what if.";
authors[2] = "Karrie Huffman";
quotes[3] = "The difference between the impossible and the possible lies in a person's determination.";
authors[3] = "Tommy Lasorda";
quotes[4] = "Dreams come true; without that possibility, nature would not incite us to have them.";
authors[4] = "John Updike ";
quotes[5] = "You are never given a dream without also being given the power to make it true. You may have to work for it, however.";
authors[5] = "Richard Bach ";
quotes[6] = "There are those that look at things the way they are, and ask why? I dream of things that never were, and ask why not.";
authors[6] = "Robert F. Kennedy ";
quotes[7] = "Without dreams, there is no reality!";
authors[7] = "Luis B. Couto";
quotes[8] = "Patience and perseverance have a magical effect before which difficulties disappear and obstacles vanish.";
authors[8] = "John Quincy Adams";
quotes[9] = "Great works are performed not by strength but by perseverance.";
authors[9] = "Samuel Johnson";
quotes[10] = "A jug fills drop by drop.";
authors[10] = "Buddha";
quotes[11] = "If you want to get somewhere you have to know where you want to go and how to get there. Then never, never, never give up.";
authors[11] = "Norman Vincent Peale";
quotes[12] = "How long should you try? Until.";
authors[12] = "Jim Rohn";
quotes[13] = "We can do anything we want to do if we stick to it long enough.";
authors[13] = "Helen Keller";
quotes[14] = "In the middle of difficulty lies opportunity.";
authors[14] = "Albert Einstein";
quotes[15] = "Opportunity is missed by most people because it is dressed in overalls and looks like work.";
authors[15] = "Thomas Edison";
quotes[16] = "If opportunity doesn't knock, build a door.";
authors[16] = "Milton Berle";
quotes[17] = "We would accomplish many more things if we did not think of them as impossible.";
authors[17] = "C. Malesherbes";
quotes[18] = "Start by doing what's necessary, then what's possible, and suddenly you are doing the impossible.";
authors[18] = "Francis of Assisi";
quotes[19] = "To accomplish great things, we must not only act, but also dream, not only plan, but also believe.";
authors[19] = "Anatole France";
quotes[20] = "Most of the important things in the world have been accomplished by people who have kept on trying when there seemed to be no hope at all.";
authors[20] = "Dale Carnegie";
quotes[21] = "If not us, who? If not now, when?";
authors[21] = "Kennedy, John F.";
quotes[22] = "Great things are not done by impulse, but by a series of small things brought together.";
authors[22] = "Vincent Van Gogh";
quotes[23] = "High achievement always takes place in the framework of high expectation.";
authors[23] = "Jack Kinder ";
quotes[24] = "People become really quite remarkable when they start thinking that they can do things. When they believe in themselves they have the first secret of success.";
authors[24] = "Norman Vincent Peale";
quotes[25] = "Each of us has his own special gift and you know this was meant to be true. And if you don't under estimate me, I won't under estimate you.";
authors[25] = " Bob Dylan";
quotes[26] = "May you build a ladder to the stars and climb on every rung.";
authors[26] = "Bob Dylan";
quotes[27] = "We must become the change we want to see.";
authors[27] = "Mahatma Gandhi";

var randq = Math.round(Math.random()*(quotes.length-1));
function showQuote(elt)
{
  elt.innerHTML = quotes[randq];
}
function showAuthor(elt)
{
  elt.innerHTML = authors[randq];
}

function displayQuote()
{
  showQuote(document.getElementById("quote"));
  showAuthor(document.getElementById("author"));
}




 




 








 
