var quotes=new Array();
quotes[0] = "Live as if you were to die tomorrow. Learn as if you were to live forever. <span>&mdash; Gandhi</span>";
quotes[1] = "Information cannot replace education. <span>&mdash; Earl Kiole</span>";
quotes[2] = "Teaching is not a profession; it's a passion. <span>&mdash; Unknown</span>";

var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote(){document.write(quotes[whichquote]);}
showquote();