var quotes  = new Array(32);
var credits = new Array(32);

quotes[0]="N/A"; 
quotes[1]="I would rather be exposed to the inconveniences attending too much liberty than to those attending too small a degree of it.";
quotes[2]="They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.";
quotes[3]="Government is not reason, it is not eloquence, it is force; like fire, a troublesome servant and a fearful master. Never for a moment should it be left to irresponsible action";
quotes[4]="A well-regulated Militia, being necessary to the security of a free State, the right of the people to keep and bear arms, shall not be infringed.";
quotes[5]="Are we at last brought to such humiliating and debasing degradation, that we cannot be trusted with arms for our defense?";
quotes[6]="A man who is good enough to shed his blood for the country is good enough to be given a square deal afterwards.";
quotes[7]="You may have to fight when there is no hope of victory, because it is better to perish than live as slaves.";
quotes[8]="There are those, I know, who will say that the liberation of humanity, the freedom of man and mind, is nothing but a dream.  They are right.  It is the American dream.";
quotes[9]="We dare not forget that we are the heirs of that first revolution.";
quotes[10]="In matters of style, swim with the current; in matters of principle, stand like a rock.";
quotes[11]="The government of the United States is not, in any sense, founded on the Christian religion.";
quotes[12]="I know not what course others may take; but as for me, give me liberty, or give me death.";
quotes[13]="Every immigrant who comes here should be required within five years to learn English or leave the country.";
quotes[14]="The American Revolution was a beginning, not a consummation.";
quotes[15]="I'm at the foot of the ladder...I'm going to step off...now. That's one small step for man. One giant leap for mankind.";
quotes[16]="A little rebellion now and then...is a medicine necessary for the sound health of government.";
quotes[17]="Guard with jealous attention the public liberty. Suspect everyone who approaches that jewel. Unfortunately, nothing will preserve it but downright force. Whenever you give up that force, you are inevitably ruined.";
quotes[18]="Those who expect to reap the blessings of freedom must, like men, undergo the fatigue of supporting it.";
quotes[19]="It does not require a majority to prevail, but rather an  irate, tireless minority keen to set brush fires in people's minds.";
quotes[20]="The spirit of resistance to government is so valuable on certain occasions, that I wish it always to be kept alive.";
quotes[21]="The liberties of a people never were, nor ever will be, secure, when the transactions of their rulers may be concealed from them.";
quotes[22]="A patriot must always be ready to defend his country against his government.";
quotes[23]="Ours is the only country deliberately founded on a good idea.";
quotes[24]="I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident that all men are created equal'";
quotes[25]="Does the government fear us? Or do we fear the government? When the  people fear the government, tyranny has found victory. The federal government is our servant, not our master!";
quotes[26]="The Constitution is not an instrument for the government to restrain the people, it is an instrument for the people to restrain the government -- lest it come to dominate our lives and interests.";
quotes[27]="My God!  How little do my countrymen know what precious blessings they are in possession of, and which no other people on earth enjoy!";
quotes[28]="Each man must for himself alone decide what is right and what is wrong, which course is patriotic and which isn't. You cannot shirk this and be a man.";
quotes[29]=" When once a  republic is corrupted, there is no possibility of remedying any of the growing evils but by  removing the corruption and restoring its lost principles;  every other correction is either useless or a new evil.";
quotes[30]="The price of freedom is eternal vigilance.";
quotes[31]="We are not weak if we make a proper use of those means which the God of Nature has placed in our power... the battle, sir, is not to the strong alone it is to the vigilant, the active, the brave.";

credits[0]="N/A"; 
credits[1]="Thomas Jefferson, 1791";
credits[2]="Benjamin Franklin";
credits[3]="George Washington";
credits[4]="U.S. Constitution, 2nd Amendment";
credits[5]="Patrick Henry";
credits[6]="Theodore Roosevelt";
credits[7]="Sir Winston Churchill";
credits[8]="Archibald MacLeish";
credits[9]="John F. Kennedy";
credits[10]="Thomas Jefferson";
credits[11]="George Washington";
credits[12]="Patrick Henry, 1775";
credits[13]="Theordore Roosevelt";
credits[14]="Woodrow Wilson";
credits[15]="Neil Armstrong, July 20, 1969";
credits[16]="Thomas Jefferson";
credits[17]="Patrick Henry, 1788";
credits[18]="Thomas Paine";
credits[19]="Samuel Adams";
credits[20]="Thomas Jefferson";
credits[21]="Patrick Henry";
credits[22]="Edward Abbey";
credits[23]="John Gunther";
credits[24]="Martin Luther King, Jr.";
credits[25]="Thomas Jefferson";
credits[26]="Patrick Henry";
credits[27]="Thomas Jefferson";
credits[28]="Thomas Tusser";
credits[29]="Thomas Jefferson";
credits[30]="Thomas Jefferson";
credits[31]="Patrick Henry";

function sayQuote()
{
	var today       = new Date();
	var day         = today.getDate();
	var quoteString = quotes[day];
	document.write(quoteString);
};

function sayCredit()
{
	var today        = new Date();
	var day          = today.getDate();
	var creditString = credits[day];
	document.write(creditString);
};

