/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

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

if (quotes==0) {
title="(Maria Edgeworth, English children's author : 1767-1849)";
body="'Some people talk of morality, and some of religion, but give me a little snug property.'";
}

if (quotes==1) {
title="(Karl Marx, German socialist leader and philosopher : 1818-1883)";
body="'Landlords, like all other men, love to reap where they never sowed.'";
}

if (quotes==2) {
title="(Will Rogers, American actor and humorist : 1879-1935)";
body="'In a real estate man's eye, the most expensive part of the city is where he has a house to sell.'";
}

if (quotes==3) {
title="(James Madison, 4th president of USA : 1751-1809)";
body="'As a man is said to have a right to his property, he may be equally said to have a property in his rights.'";
}

if (quotes==4) {
title="(Nathaniel Hawthorne)";
body="'What we call real estate - the solid ground to build a house on - is the broad foundation on which nearly all the guilt of this world rests.'";
}

if (quotes==5) {
title="(John Adams, President USA : 1735 - 1826)";
body="'Property is surely a right of mankind as real as liberty.'";
}

if (quotes==6) {
title="(Ralph Waldo Emerson)";
body="'No man acquires property without acquiring with it a little arithmetic also.'";
}
if (quotes==7) {
title="(e.e.cummings)";
body="'Private property began the instant somebody had a mind of his own.'";
}

document.write('<p class="quote">' + body + '<br>');
document.write('<span class="attrib">' + title + '</span>');
document.write('</div>');
