/* script language="javascript" src="quotes.js"></script> */

var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Demosthenes";
body="Small opportunities are often the beginning of great enterprises.";
}

if (quotes==1) {
title="Carol Matthau";
body="There is no old age.  Ther is, as there always was, just you.";
}

if (quotes==2) {
title="Frank Lloyd Wright";
body="The longer I live, the more beautiful life becomes.";
}

if (quotes==3) {
title="Albert Einstein";
body="I never think of the future – it comes soon enough..";
}

if (quotes==4) {
title="Galileo Galilei";
body="All truths are easy to understand once they are discovered; the point is to discover them.";
}

if (quotes==5) {
title="Oscar Wilde";
body="Truth in matters of religion is simply the opinion that has survived.";
}

if (quotes==6){
title="Delos B. McKown";
body="The invisible and the non-existent look very much alike.";
} 

document.write('<br><div align=right>');
document.write('<strong>'+ body +'');
document.write('<br><i>- ' + title + '</i></strong>');
document.write('</div>');

