var thePhrase = new Array() 

thePhrase[0] = 'saving SPACES…protecting PLACES'
thePhrase[1] = 'Preserve It...Protect It...Pass It On'
thePhrase[2] = 'Farmland...they aren’t making anymore of it!'
thePhrase[3] = 'Every minute America is losing 2 acres of farmland'
thePhrase[4] = 'Agriculture provides jobs for more than 5,000 Washington County residents'
thePhrase[5] = 'The population in Washington County has increased nearly 94% over the past 30 years'
thePhrase[6] = 'Washington County is the fourth fastest growing county in Wisconsin'
thePhrase[7] = 'Over the past 23 years, Washington County has lost nearly 34% of its farmland'
thePhrase[8] = 'Agriculture gives more than it takes!'
thePhrase[9] = 'Farmland might seem expensive, but you only have to buy it once'
thePhrase[10] = 'YOU can make a difference!'
thePhrase[11] = 'Not all of our assets are in the bank!'
thePhrase[12] = 'Rapid growth is changing Washington County...and it isn’t all for the better'
thePhrase[13] = 'Protecting farmland and natural areas in Washington County'
thePhrase[14] = 'It’s not farmland without farmers.  Buy local products.'
thePhrase[15] = 'No Farms...No Food'

var p = thePhrase.length;
var whichPhrase = Math.round(Math.random()*(p-1));
function showPhrase(){
	document.write(thePhrase[whichPhrase]);
}