

var num_of_quotes = 5;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="'All who have meditated on the art of governing mankind have been convinced that the fate of empires depends on the education of youth'";
title="- Aristotle";
}

if (quotes==1) {
body="'You must learn day by day, year by year, to broaden your horizon. The more things you love, the more you are interested in, the more you enjoy, the more you are indignant about, the more you have left when anything happens.'";
title="- Ethel Barrymore";
}

if (quotes==2) {
body="'Remember that our nation's first great leaders were also our first great scholars.'";
title="- John F. Kennedy";
}

if (quotes==3) {
body="'The [person] who can make hard things easy is the educator.'";
title="- Ralph Waldo Emerson";
}

if (quotes==4) {
body="'Who dares to teach must never cease to learn.'";
title="- John Cotton Dana";
}


document.write('<div align=left>');
document.write('<i><font size="2">'+ body +'</font></i>');
document.write('<br><br><i><font size="2">' + title + '</font></i>');
document.write('</div>');
