 /* This JavaScript (Random Quotes) developed by Scott Clark
 The Source is available at http://www.clarksco.com/blog/
 Copyright 2005 Clark Consulting */
 
 
 // Math that sets the number of the quote to be displayed
var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

 // Database of Quotes
if (quotes==0) {
title="Every artist dips his brush in his own soul, and paints his own nature into his pictures";
body="&mdash;Henry Ward Beecher";
}

if (quotes==1) {
title="Fine art is that in which the hand, the head and the heart go together.";
body="&mdash;John Ruskin";
}

if (quotes==2) {
title="Art is nothing less than a way of making joys perpetual.";
body="&mdash;Rebecca West";
}

if (quotes==3) {
title="The beautiful is as useful as the useful.";
body="&mdash;Victor Hugo";
}

if (quotes==4) {
title="Art is man added to nature.";
body="&mdash;Victor Hugo";
}

if (quotes==5) {
title="All that is good in art is the expression of one soul talking to another, and is precious according to the greatness of the soul that utters it.";
body="&mdash;John Ruskin";
}

if (quotes==6) {
title="Science, at the very most, can only give to our existence comfort, convenience, and longevity, but music, literature, and art, at the very least, give life its charm, romance and immortality.";
body="&mdash;Ely Slotkin";
}
 // Outputs the HTML to your web page.
 document.write('<p>');
 document.write('<span class="quote">' + title + '</span>');
 document.write('<span class="credit">' + body +'</span>');
 document.write('</p>');



