//All scripts unless specified are copyright Poweraxis 2009 - www.poweraxis.com

function doVoid()
{
}

var randomQuotes = new Array();
randomQuotes[0] = "&quot;It is dangerous to be right when the government is wrong.&quot; ~ Voltaire";
randomQuotes[1] = "&quot;When one tugs at a single thing in nature, he finds it attached to the rest of the world.&quot; ~ John Muir";
randomQuotes[2] = "&quot;What we achieve inwardly will change outer reality.&quot; ~ Greek author Plutarch";
randomQuotes[3] = "&quot;When everyone is against you, it means that you are absolutely wrong -- or absolutely right.&quot; ~ Albert Guinon";
randomQuotes[4] = "&quot;Our lives begin to end the day we become silent about things that matter.&quot; ~ Martin Luther King Jr.";
randomQuotes[5] = "&quot;As is a tale, so is life: not how long it is, but how good it is, is what matters.&quot; ~ Seneca the Roman";
randomQuotes[6] = "&quot;Any sufficiently advanced technology is indistinguishable from magic.&quot; ~ Arthur C. Clarke";

function doRandomQuote()
{
	var whichQuote=Math.floor(Math.random()*7);
	document.writeln("" + randomQuotes[whichQuote] + "");
}
 
