//<![CDATA[
var quote=new Array(); /* Change quote text here, to add more, copy and paste, and add to the number next to quote*/

  quote[0]='"I cannot undertake to lay my finger on that article of the Constitution which granted a right to Congress of expending, on the objects of benevolence, the money of their constituents." - James Madison';
  quote[1]='"The tree of liberty must be refreshed from time to time with the blood of patriots and tyrants." - Thomas Jefferson';
  quote[2]='"There is nothing more permanent than a temporary government program." - Ronald Reagan';
  quote[3]='"Out of suffering have emerged the strongest souls; the most massive characters are seared with scars. - Kahlil Gibran';
  quote[4]='"Anyone who trades liberty for security deserves neither liberty or security. " - Benjamin Franklin';
  quote[5]='"(It is) the people, to whom all authority belongs." - Thomas Jefferson';
  quote[6]='"The insanity called "gun control" is based on the ridiculous idea that rendering people defenseless somehow makes them less of a target for violent criminals." - Author Unknown';
  quote[7]='"Socialism in general has a record of failure so blatant that only an intellectual could ignore or evade it." - Thomas Sowell';
  quote[8]='"Have you got goose bumps?" - Ronald Reagan to aid Michael Deaver in the Oval Office';
  quote[9]='"The powers of the federal government are enumerated; it can only operate in certain cases; it has legislative powers on defined and limited objects . . ." - James Madison';
  quote[10]='"It is a good thing that we do not get as much government as we pay for." - Will Rogers';
  quote[11]='"Democracy and socialism have nothing in common but one word, equality.  But notice the difference; while democracy seeks equality in liberty, socialism seeks equality in restraint and servitude." - Alexis de Tocqueville';
  quote[12]='"Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote." - Benjamin Franklin';
  quote[13]='"Underlying most arguments against the free market is a lack of belief in freedom itself." - Milton Friedman';
  quote[14]='"Posterity!  You will never know how much it cost us to preserve your freedom.  I hope you will make a good use of it." - John Adams';

/*DO NOT EDIT BELOW THIS*/

var speed=10000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
 //]]>