var quotes = new Array()
quotes[0] = '“We must all hang together, or assuredly we shall all hang separately.”<br> - Benjamin Franklin'
quotes[1] = '“Freedom is never more than one generation away from extinction. We didn\'t pass it to our children in the bloodstream. It must be fought for, protected, and handed on for them to do the same, or one day we will spend our sunset years telling our children and our children\'s children what it was once like in the United States where men were free.”<br> - Ronald Reagan'
quotes[2] = '“…The limits of tyrants are prescribed by the endurance of those whom they oppress."<br> - Frederick Douglass'
quotes[3] = '"You\'re never beaten until you admit it."<br> - Gen. George S. Patton, Jr.'
quotes[4] = '"The world is a dangerous place, not because of those who do evil, but because of those who look on and do nothing."<br> - Albert Einstein'
quotes[5] = '“Do your full duty as you see it and damn the consequences.”<br> - Gen George S. Patton, Jr.'
quotes[6] = '“Once a government is committed to the principle of silencing the voice of opposition, it has only one way to go, and that is down the path of increasingly repressive measures, until it becomes a source of terror to all its citizens and creates a country where everyone lives in fear.”<br> - Harry S. Truman'
quotes[7] = '"Freedom had been hunted round the globe; reason was considered as rebellion; and the slavery of fear had made men afraid to think. But such is the irresistible nature of truth, that all it asks, and all it wants, is the liberty of appearing."<br> - Thomas Paine' 
quotes[8] = '"The patriot volunteer, fighting for country and his rights, makes the most reliable soldier on earth."<br> - Gen Thomas J. "Stonewall" Jackson'
quotes[9] = '"Government is instituted for the common good; for the protection, safety, prosperity, and happiness of the people; and not for profit, honor, or private interest of any one man, family, or class of men."<br> - John Adams'
quotes[10] = '"In questions of power, then, let no more be heard of confidence in man, but bind him down from mischief by the chains of the Constitution."<br> - Thomas Jefferson'
quotes[11] = '"The essence of Government is power; and power, lodged as it must be in human hands, will ever be liable to abuse."<br> - James Madison'
quotes[12] = '“The hottest place in Hell is reserved for those who remain neutral in times of great moral conflict.”<br> - Dr. Martin Luther King Jr.'
quotes[13] = '“We may have all come on different ships, but we\'re in the same boat now.”<br> - Dr. Martin Luther King Jr.'
quotes[14] = '"Today, when a concerted effort is made to obliterate this point, it cannot be repeated too often that the Constitution is a limitation on the government, not on private individuals-that it does not prescribe the conduct of private individuals, only the conduct of the government-that it is not a charter for government power, but a charter of the citizen\'s protection against the government."<br> - Ayn Rand'
quotes[15] = '"Rightful liberty is unobstructed action according to our will within limits drawn around us by the equal rights of others. I do not add \'within the limits of the law\' because law is often but the tyrant\'s will, and always so when it violates the rights of the individual."<br> - Thomas Jefferson'
quotes[16] = '"There are more instances of the abridgment of the freedom of the people by gradual and silent encroachments of those in power than by violent and sudden usurpations."<br> - James Madison'
quotes[17] = '"Liberty must at all hazards be supported. We have a right to it, derived from our Maker. But if we had not, our fathers have earned and bought it for us, at the expense of their ease, their estates, their pleasure, and their blood."<br> - John Adams'
quotes[18] = '"Guard with jealous attention the public liberty. Suspect every one who approaches that jewel. Unfortunately, nothing will preserve it but downright force. Whenever you give up that force, you are inevitably ruined."<br> - Patrick Henry' 
quotes[19] = '"The only choice we have is up or down-up, to the ultimate in individual freedom consistent with law and order, or down to the deadly dullness of totalitarianism."<br> - Ronald Reagan'
quotes[20] = '"There are no hopeless situations; There are only men who have grown hopeless about them."<br> - Clare Boothe Luce'
quotes[21] = '"If you are distressed by anything external, the pain is not due to the thing itself, but to your estimate of it; and this you have the power to revoke at any moment."<br> - Marcus Aurelius'
quotes[22] = '“Those who make peaceful revolution impossible will make violent revolution inevitable.”<br> - John F. Kennedy'
quotes[23] = '“There are risks and costs to a program of action. But they are far less than the long-range risks and costs of comfortable inaction.”<br> - John F. Kennedy'
quotes[24] = '"The welfare of the people in particular has always been the alibi of tyrants, and it provides the further advantage of giving the servants of tyranny a good conscience."<br> - Albert Camus'


function switchQuote()
{
  if(idx >= quotes.length)
    idx = 0
  document.getElementById("quotes").innerHTML=quotes[idx];
  idx += 1;
}

function stretch()
{
  var maindiv = document.getElementById('content-main');
  var quotesdiv = document.getElementById('quotescontainer');
  if(maindiv.offsetHeight)
    divHeight=maindiv.offsetHeight;
  else
  { 
    if(d=maindiv.style.pixelHeight)
      divHeight=maindiv.style.pixelHeight;
  }
  if(divHeight < 550)
    quotesdiv.style.height=550;
  else
    quotesdiv.style.height=divHeight;

} 
