function setCopy(imageNumber)
{
	var copy;
	switch(imageNumber)
	{
		
		case 1:
			copy = "<h1>Kentucky Vineyard 1</h1><br>"+
			"<p>Freshly plowed earth, ready for vine planting. Campbellsville, Kentucky.</p>";
			break;
			
		case 2:
			copy = "<h1>Kentucky Vineyard 2</h1><br>"+
			"<p>Freshly plowed earth, ready for vine planting. Campbellsville, Kentucky.</p>";
			break;
			  
		case 3:
			copy = "<h1>Kentucky Vineyard 3</h1><br>"+
			"<p>Progress—the first year's vines. Campbellsville, Kentucky.</p>";
			break;
				
		case 4:
			copy = "<h1>Kentucky Vineyard 4</h1><br>"+
			"<p>Imagine putting something in the ground that may well be here long after we are not. Campbellsville, Kentucky.</p>";
			break;
			
		case 5:
			copy = "<h1>Kentucky Vineyard 5</h1><br>"+
			"<p>Harvesting the fruits of your labor. Campbellsville, Kentucky.</p>";
			break;
					
		case 6:
			copy = "<h1>Kentucky Vineyard 6</h1><br>"+
			"<p>Winter rest. Campbellsville, Kentucky.</p>";
			break;
				
		case 7:
			copy = "<h1>Rural Indiana 1</h1><br>"+
			"<p>Winter retreat for three days to a rural setting. Indiana farm.</p>";
			break;
				
		case 8:
			copy = "<h1>Rural Indiana 2</h1><br>"+
			"<p>Beautiful, sunny but very, very cold. Indiana farm.</p>";
			break;
				
		case 9:
			copy = "<h1>Rural Indiana 3</h1><br>"+
			"<p>Morning sunlight. Indiana farm.</p>";
			break;
				
		case 10:
			copy = "<h1>Rural Indiana 4</h1><br>"+
			"<p>Textured out-buildings, years of weathering. Indiana farm.</p>";
			break;
				
		case 11:
			copy = "<h1>Rural Indiana 5</h1><br>"+
			"<p>The light is crisp and beautiful. Indiana farm.</p>";
			break;
				
		case 12:
			copy = "<h1>Rural Indiana 6</h1><br>"+
			"<p>The addition of snow deepens the quiet of this setting. The elements are rugged, and yet at times so painterly. Indiana farm.</p>";
			break;
				
		case 13:
			copy = "<h1>Rural Indiana 7</h1><br>"+
			"<p>The day winds down. Indiana farm.</p>";
			break;
								
		case 14:
			copy = "<h1>Rural Indiana 8</h1><br>"+
			"<p>The day is done. Indiana farm.</p>";
			break;
					
		case 15:
			copy = "<h1>Dahlia</h1><br>"+
			"<p>My father&#8217;s garden. Victoria, British Columbia.</p>";
			break;	
			
		case 16:
			copy = "<h1>Dahlias</h1><br>"+
			"<p>My father&#8217;s garden. Victoria, British Columbia.</p>";
			break;
				
		case 17:
			copy = "<h1>Purple Coneflower</h1><br>"+
			"<p>Flowers fill one&#8217;s sight everywhere. Victoria, British Columbia.</p>";
			break;
			
		case 18:
			copy = "<h1>Dahlias</h1><br>"+
			"<p>Elegant beauty. Victoria on Vancouver Island, British Columbia. </p>";
			break;

		case 19:
			copy = "<h1>Seed Pods</h1><br>"+
			"<p>Seed pods in the courtyard at a Trappist monastery in Kentucky.</p>";
			break;
				
		case 20:
			copy = "<h1>Lilly Pad Leaf</h1><br>"+
			"<p>Distressed lilly pad, courtyard pond at the Abbey of Gethsemani a Trappist monastery in Kentucky.</p>";
			break;
			
		case 21:
			copy = "<h1>Vibrant Red Leaves</h1><br>"+
			"<p>Vibrant leaf photographed at Abbey of Gethsemani, Kentucky.</p>";
			break;
				
		case 22:
			copy = "<h1>Forest Floor</h1><br>"+
			"<p>Arbutus leaves on the forest floor, Pender Island, British Columbia. </p>";
			break;
				
		case 23:
			copy = "<h1>Arbutus bark</h1><br>"+
			"<p>Arbutus bark peeling. What a tremendous color. Prevost Island, British Columbia. </p>";
			break;

		case 24:
			copy = "<h1>Hibernating Forest</h1><br>"+
			"<p>Afternoon walk through forests still sleeping off the winter's cold. Abbey of Gethsemani, Kentucky.</p>";
			break;
			
		case 25:
			copy = "<h1>Sycamore Tree</h1><br>"+
			"<p>Fall stripping the leaves. Abbey of Gethsemani, Kentucky.</p>";
			break;

		case 26:
			copy = "<h1>Mountain Forest</h1><br>"+
			"<p>Forest found on a mountain hike through the Colorado Rocky Mountains.</p>";
			break;

		case 27:
			copy = "<h1>Wooded Clearing</h1><br>"+
			"<p>Wooded green on a small farm and vineyard in Campbellsville, Kentucky.</p>";
			break;
								
		case 28:
			copy = "<h1>Winter grass</h1><br>"+
			"<p>Brisk but beautifyl day. Abbey of Gethsemani, Kentucky.</p>";
			break;

		case 29:
			copy = "<h1>Kentuck Sunset</h1><br>"+
			"<p>The end of the day. Campbellsville, Kentucky.</p>";
			break;

		case 30:
			copy = "<h1>Winter grass</h1><br>"+
			"<p>The weathered look. Campbellsville, Kentucky.</p>";
			break;
						

		default:
			break;
	}
	document.getElementById("copy").innerHTML = copy;
}
