var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="";
body="Freedom is never more than one generation away from extinction. We didn't pass it to our children in the bloodstream. It must be fought for, protected, and handed on for them to do the same, or one day we will spend our sunset years telling our children and our children's children what it was once like in the United States where men were free.";
}

if (quotes==1) {
title="";
body="I don't believe in a government that protects us from ourselves.";
}

if (quotes==2) {
title="";
body="People don't start wars, governments do.";
}

if (quotes==3) {
title="";
body="Politics is supposed to be the second oldest profession. I have come to realize that it bears a very close resemblance to the first.";
}

if (quotes==4) {
title="";
body="The best minds are not in government. If any were, business would hire them away.";
}

if (quotes==5) {
title="";
body="The nine most terrifying words in the English language are, 'I'm from the government and I'm here to help.'";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');
