/* 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 = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="";
body="Harvesting trees for production of building products removes carbon from the forest that was first removed from the atmosphere through photosynthesis.";
}

if (quotes==1) {
title="";
body="Growing trees takes carbon out of the atmosphere storing it first in the forest, which when harvested moves this carbon to storage in products while at the same time displacing fossil intensive products like steel and concrete.";
}

if (quotes==2) {
title="";
body="Using wood products instead of steel or concrete can further reduce greenhouse gas emissions from fossil fuels.";
}

if (quotes==3) {
title="";
body="Construction of wood-frame homes uses 17% less energy than matching steel-frame homes.";
}

document.write('<div>');
document.write('<h2>' + title + '</h2>');
document.write(''+ body +'');
document.write('</div>');

