//programmer: Dilip Sunuwar 
//date: 2 April 2007
//-----------------------------
theDate= new Date();
var day = theDate.getDate();
var year = theDate.getYear();
year = (year < 2000) ? year + 1900 : year;
var textdate = (theDate.getMonth() + 1) + '/' + theDate.getDate() + '/' + year;

var numquotes = 31;
quotes = new Array(numquotes+1);
quotes[1] = "A democracy cannot long endure with the head of a god and the tail of a demon.(Josephine Silone Yates)";
quotes[2] = "Whatever our creed, we feel that no good deed can by any possibility go unrewarded, no evil deed unpunished. (Orison Swett Marden)";
quotes[3] = "You cannot do wrong without suffering wrong. (Ralph Waldo Emerson)";
quotes[4] = "When people start standing in line to get out of this country instead of standing in line to get in, then we can start worrying about our system.";
quotes[5] = "The great successful men of the world have used their imagination...they think ahead and create their mental picture in all its details, filling in here, adding a little there, altering this a bit and that a bit, but steadily building-steadily buildings. (Robert Collier)";
quotes[6] = "All humanity is one undivided and indivisible family, and each one of us is responsible for the misdeeds of all the others. I cannot detach myself from the wickedest soul.(Mahatma Gandhi)";
quotes[7] = "Injustice anywhere is a threat to justice everywhere . . . Whatever affects one directly, affects all indirectly.( Martin Luther King Jr.)";
quotes[8] = "America did not invent human rights. In a very real sense... human rights invented America.(Jimmy Carter,1924)";
quotes[9] = "The lure of the distant and the difficult is deceptive.  The great opportunity is where you are. (John Burroughs)";
quotes[10] = "Every situation, properly perceived, becomes an opportunity. (Helen Schucman)";
quotes[11] = "What this power is I cannot say; all I know is that it exists and it becomes available only when a man is in that state of mind in which he knows exactly what he wants and is fully determined not to quit until he finds it. (Alexander Graham Bell)";
quotes[12] = "I have cherished the ideal a democratic and free society... it is an ideal for which I am prepared to die.(Nelson Mandela,)";
quotes[13] = "I do not think there is any other quality so essential to success of any kind as the quality of perseverance.  It overcomes almost everything, even nature. (John D. Rockefeller)";
quotes[14] = "When I gave food to the poor, they called me a saint. When I asked why the poor were hungry, they called me a Communist.(Dom Helder Camara)";
quotes[15] = "Although we are in different boats you in your boat and we in our canoe we share the same river of life.(Chief Oren Lyons)";
quotes[16] = "Democracy means simply the bludgeoning of the people by the people for the people(Oscar Wilde)";
quotes[17] = "Politics is the art of looking for trouble, finding it everywhere, diagnosing it incorrectly, and applying the wrong remedies.(Grouch Marx)";
quotes[18] = "Problems are only opportunities in work clothes. (Henry J. Kaiser)";
quotes[19] = "Opportunities? They are all around us...there is power lying latent everywhere waiting for the observant eye to discover it. (Orison Swett Marden)";
quotes[20] = "Most successful men have not achieved their distinction by having some new talent or opportunity presented to them.  They have developed the opportunity that was at hand. (Bruce Barton)";
quotes[21] = "Those who deny freedom to others, deserve it not for themselves; and, under a just God, can not long retain it.(Abraham Lincoln)";
quotes[22] = "Destiny is not a matter of chance; it is a matter of choice.  It is not something to be waited for; but, rather something to be achieved. (William Jennings Bryan)";
quotes[23] = "Opportunity rarely knocks on your door. Knock rather on opportunity's door if you ardently wish to enter. (B.C. Forbes)";
quotes[24] = "Each problem has hidden in it an opportunity so powerful that it literally dwarfs the problem.  The greatest success stories were created by people who recognized a problem and turned it into an opportunity. (Joseph Sugarman)";
quotes[25] = "As I would not be a slave, so I would not be a master. This expresses my idea of democracy. Whatever differs from this, to the extent of the difference, is no democracy.(Abraham Lincoln)";
quotes[26] = "Freedom is not worth having if it does not include the freedom to make mistakes.(Mahatma Gandhi)";
quotes[27] = "I cannot teach you violence, as I do not myself believe in it. I can only teach you not to bow your heads before any one even at the cost of your life.(Mahatma Gandhi)";
quotes[28] = "Opportunity...often it comes in the form of misfortune, or temporary defeat. (Napoleon Hill)";
quotes[29] = "Strength does not come from physical capacity. It comes from an indomitable will(Mahatma Gandhi)";
quotes[30] = "I am sometimes a fox and sometimes a lion. The whole secret of government lies in knowing when to be the one or the other.(Napoleon Bonaparte)";
quotes[31] = "I contend that dishonesty will create a failure force that often manifests itself in other ways - ways not apparent to the outside observer. (Joseph Sugarman)";

//document.write('<b>Quote for ' + textdate + '</b><br>');
document.write(quotes[day]);

