// Random Quote Display



var mess = new Array(


"Life is the art of drawing without an eraser.<br />&#126;&nbsp;<a href='http://en.wikipedia.org/wiki/John_W._Gardner' target='_blank'><small><i>John W. Gardner</i></small></a>",

"A nation without dregs and malcontents is orderly, peaceful and pleasant, but perhaps without the seed of things to come.<br />&#126;&nbsp;<a href='http://en.wikipedia.org/wiki/Eric_Hoffer' target='_blank'><small><i>Eric Hoffer</i></small></a>",

"Anyone who has the power to make you believe absurdities has the power to make you commit injustices.<br />&#126;&nbsp;<a href='http://en.wikipedia.org/wiki/Voltaire' target='_blank'><small><i>Voltaire</i></small></a>");


var max = mess.length;
var num = Math.floor((Math.random() * max));

document.writeln(mess[num]);








