// JavaScript Document

var quotes=new Array();
quotes[0] = "&quot;It's kind of fun to do the impossible&quot;<br\/>&ndash; Walt Disney";
quotes[1] = "&quot;Nothing is impossible, the word itself says 'I'm possible'!&quot;<br\/>&ndash; Audrey Hepburn";
quotes[2] = "&quot;It always seems impossible until it’s done.&quot;<br\/>&ndash; Nelson Mandela";
quotes[3] = "&quot;Impossible is a word to be found only in the dictionary of fools.&quot;<br\/>&ndash; Napoleon Bonaparte";
quotes[4] = "&quot;Because a thing seems difficult for you,<br\/>do not think it impossible for anyone to accomplish.&quot;<br\/>&ndash; Marcus Aurelius";
quotes[5] = "&quot;I love those who yearn for the impossible.&quot;<br\/>&ndash; Johann Wolfgang von Goethe";
quotes[6] = "&quot;There is nothing impossible to him who will try.&quot;<br\/>&ndash; Alexander the Great";
quotes[7] = "&quot;Attempt the impossible in order to improve your work.&quot;<br\/>&ndash; Bette Davis";
quotes[8] = "&quot;Start by doing what's necessary; then do what's possible;<br\/>and suddenly you are doing the impossible.&quot;<br\/>&ndash; Francis of Assisi";
quotes[9] = "&quot;Sometimes I've believed as many as six impossible things before breakfast.&quot;<br\/>&ndash; Lewis Carroll";
quotes[10] = "&quot;Women, like men, should try to do the impossible. And when<br\/>they fail, their failure should be a challenge to others.&quot;<br\/>&ndash; Amelia Earhart";
quotes[11] = "&quot;The only place where your dream becomes<br\/>impossible is in your own thinking.&quot;<br\/>&ndash; Robert H. Schuller";
quotes[12] = "&quot;The impossible - what nobody can do until somebody does&quot;<br\/>&ndash; Anonymous";
quotes[13] = "&quot;The impossible is often the untried.&quot;<br\/>&ndash; Jim Goodwin";
quotes[14] = "&quot;The difficult is what takes a little time;<br\/>the impossible is what takes a little longer.&quot;<br\/>&ndash; Fridtjof Nansen";
quotes[15] = "&quot;Every noble work is at first impossible.&quot;<br\/>&ndash; Thomas Carlyle";
quotes[16] = "&quot;In order to attain the impossible, one must attempt the absurd.&quot;<br\/>&ndash; Miquel de Cervantes";
quotes[17] = "&quot;We are all faced with a series of great opportunities<br\/>brilliantly disguised as impossible situations.&quot;<br\/>&ndash; Charles R. Swindoll";
quotes[18] = "&quot;What is the beautiful, if not the impossible.&quot;<br\/>&ndash; Gustave Flaubert";
quotes[19] = "&quot;I won't predict anything historic. But nothing is impossible.&quot;<br\/>&ndash; Michael Phelps";
quotes[20] = "&quot;Most of the things worth doing in the world had been<br\/>declared impossible before they were done.&quot;<br\/>&ndash; Louis D. Brandeis";
quotes[21] = "&quot;Accomplishing the impossible means only that<br\/>the boss will add it to your regular duties. &quot;<br\/>&ndash; Doug Larson";
quotes[22] = "&quot;Some of the world's greatest feats were accomplished<br\/>by people not smart enough to know they were impossible.&quot;<br\/>&ndash; Doug Larson";
quotes[23] = "&quot;Who so loves believes the impossible.&quot;<br\/>&ndash; Elizabeth Barrett Browning";
quotes[24] = "&quot;The limits of the possible can only be defined<br\/>by going beyond them into the impossible.&quot;<br\/>&ndash; Arthur C. Clarke";
quotes[25] = "&quot;Believe and act as if it were impossible to fail.&quot;<br\/>&ndash; Charles Kettering";
quotes[26] = "&quot;To achieve the impossible; it is precisely the<br\/>unthinkable that must be thought.&quot;<br\/>&ndash; Tim Robbins";
quotes[27] = "&quot;The difference between the impossible and the<br\/>possible lies in a man's determination.&quot;<br\/>&ndash; Tommy Lasorda";
quotes[28] = "&quot;Don't be told something is impossible. There's always a way.&quot;<br\/>&ndash; Robert Rodriquez";
quotes[29] = "&quot;Only those who attempt the absurd will achieve the impossible.<br\/>I think it's in my basement&hellip; let me go upstairs and check.&quot;<br\/>&ndash; M.C. Escher";
quotes[30] = "&quot;Politics is the art of the possible; creativity is the art of the impossible.&quot;<br\/>&ndash; Ben Okri";
quotes[31] = "&quot;It is impossible to see the angel unless you first have a notion of it.&quot;<br\/>&ndash; James Hillman";
quotes[32] = "&quot;It is impossible to win the race unless you venture to run,<br\/>impossible to win the victory unless you dare to battle.&quot;<br\/>&ndash; Richard M. DeVos";
quotes[33] = "&quot;We have to do the impossible, but it is possible.&quot;<br\/>&ndash; Kevin Garnett";
quotes[34] = "&quot;Dream the impossible because dreams do come true.&quot;<br\/>&ndash; Elijah Wood";
quotes[35] = "&quot;Aviation is proof that given, the will,<br\/>we have the capacity to achieve the impossible.&quot;<br\/>&ndash; Eddie Rickenbacker";
quotes[36] = "&quot;With love and patience, nothing is impossible.&quot;<br\/>&ndash; Daisaku Ikeda";
quotes[37] = "&quot;To believe a thing impossible is to make it so.&quot;<br\/>&ndash; French Proverb";
quotes[38] = "&quot;Everything is theoretically impossible, until it is done.&quot;<br\/>&ndash; Robert A. Heinlein";
quotes[39] = "&quot;Impossible only means that you haven’t found the solution yet.&quot;<br\/>&ndash; Anonymous";
quotes[40] = "&quot;No one gets very far unless he accomplishes<br\/>the impossible at least once a day.&quot;<br\/>&ndash; Elbert Hubbard";
quotes[41] = "&quot;We would accomplish many more things if<br\/>we did not think of them as impossible. &quot;<br\/>&ndash; Vince Lombardi";
quotes[42] = "&quot;The positive thinker sees the invisible,<br\/>feels the intangible and achieves the impossible. &quot;<br\/>&ndash; Anonymous";
quotes[43] = "&quot;Dream the impossible dream.&quot;<br\/>&ndash; Joe Darion";
quotes[44] = "&quot;What we need is more people who specialize in the impossible.&quot;<br\/>&ndash; Theodore Roethke";
quotes[45] = "&quot;The Wright brothers flew right through the smoke-screen of impossibility.&quot;<br\/>&ndash; Charles Kettering";
var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote(){document.write(quotes[whichquote]);}
showquote();

var currentYear = (new Date).getFullYear();
  $(document).ready(function() {
  $("#year").text( (new Date).getFullYear() );
  });
