<!-- Begin
var howMany = 3
var quote = new Array(3)
quote[0]="<p>&quot;If you want to see where America is heading, start by studying Texas&quot;<br>- The Economist, December 19, 2002</p>"
quote[1]="<p>&quot;The future is Texas.&quot;<br>- The Economist, December 19, 2002</p>"
quote[2]="<p>&quot;Passing a personal income tax is the smartest thing we have never done.&quot;<br>- Rick Perry</p>" 
quote[3]="<p>&quot;Passing a personal income tax is the smartest thing we have never done.&quot;<br>- Rick Perry</p>" 
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// End -->