
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.
quotes[0]='<p>Preventative war was an invention of Hitler. Frankly, I would not even listen to anyone seriously that came and talked about such a thing.</p><p class="right"><i>-Dwight D. Eisenhower</i>'
quotes[1]='<p>If you have ten thousand regulations, you destroy all respect for the law.</p><p class="right"><i>-Winston Churchill</i>'
quotes[2]='<p>I favor of cutting taxes under any circumstances and for any excuse, for any reason, whenever it\'s possible.</p><p class="right"><i>-Milton Friedman</i>'
quotes[3]='<p>Giving money and power to government is like giving whiskey and car keys to teenage boys.</p><p class="right"><i>-P.J. O\'Rourke</i>'
quotes[4]='<p>A government which robs Peter to pay Paul, can always count on the support of Paul.</p><p class="right"><i>-George Bernard Shaw</i>'
quotes[5]='<p>It is dangerous to be right when the government is wrong.</p><p class="right"><i>-Voltaire</i>'

var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
