function setCopy(imageNumber)
{
	var copy;
	switch(imageNumber)
	{
		case 1:
			copy = "<h1>Purple Coneflower</h1><br>"+
			"<p>Flowers fill one&#8217;s sight everywhere in Victoria, British Columbia.</p>";
			break;

		case 2:
			copy = "<h1>Wooded Clearing</h1><br>"+
			"<p>Wooded green on a small farm and vineyard in Campbellsville, Kentucky.</p>";
			break;
				
		case 3:
			copy = "<h1>Forest Road</h1><br>"+
			"<p>Leaf covered forest road at the Abbey of Gethsemani in Kentucky.</p>";
			break;
				
		case 4:
			copy = "<h1>Sunset Sky</h1><br>"+
			"<p>Sunset over the straits. Victoria, British Columbia.</p>";
			break;
			  
		case 5:
			copy = "<h1>Dahlias</h1><br>"+
			"<p>Elegant beauty. Victoria on Vancouver Island, British Columbia. </p>";
			break;
				
		case 6:
			copy = "<h1>Dahlias</h1><br>"+
			"<p>My father&#8217;s garden in Victoria, British Columbia.</p>";
			break;
			  
		case 7:
			copy = "<h1>Vibrant Red Leaves</h1><br>"+
			"<p>Vibrant leaf photographed at Gethsemani, a Trappist monastery in Kentucky.</p>";
			break;
				
		case 8:
			copy = "<h1>Seed Pods</h1><br>"+
			"<p>Seed pods in the courtyard at a Trappist monastery in Kentucky.</p>";
			break;
				
		case 9:
			copy = "<h1>Mountain Forest</h1><br>"+
			"<p>Forest found on a mountain hike through the Colorado Rocky Mountains.</p>";
			break;

		case 10:
			copy = "<h1>Intertwining Vines</h1><br>"+
			"<p>Harmonious vines, found in Ault Park, Cincinnati, Ohio.</p>";
			break;

		case 11:
			copy = "<h1>Sunlit Ferns</h1><br>"+
			"<p>Fern leaves in the depths of a darkened, sun streaked forest at Iron Mine Bay, Vancouver Island. </p>";
			break;
			  
		case 12:
			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 13:
			copy = "<h1>Forest Floor</h1><br>"+
			"<p>Arbutus leaves on the forest floor, Pender Island, British Columbia. </p>";
			break;
				
		case 14:
			copy = "<h1>Kentucky Sunset</h1><br>"+
			"<p>Sunset after Compline, the Abbey of Gethsemani, Kentucky.</p>";
			break;

		case 15:
			copy = "<h1>Dahlia</h1><br>"+
			"<p>My father&#8217;s garden, Victoria, British Columbia.</p>";
			break;
			
		case 16:
			copy = "<h1>Kentucky Vineyard 1</h1><br>"+
			"<p>Freshly plowed earth, ready for vine planting. Campbellsville, Kentucky.</p>";
			break;

		case 17:
			copy = "<h1>Kentucky Vineyard 2</h1><br>"+
			"<p>Freshly plowed earth, ready for vine planting. Campbellsville, Kentucky.</p>";
			break;
			  
		case 18:
			copy = "<h1>Kentucky Vineyard 3</h1><br>"+
			"<p>Progress. Last year's vine planting. Campbellsville, Kentucky.</p>";
			break;
				
		case 19:
			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 20:
			copy = "<h1>Kentucky Vineyard 5</h1><br>"+
			"<p>Imagine harvesting the fruit of your labor. Campbellsville, Kentucky.</p>";
			break;
					
		case 21:
			copy = "<h1>Kentucky Vineyard 6</h1><br>"+
			"<p>The joy of the first bountiful harvest. Campbellsville, Kentucky.</p>";
			break;
				
		case 22:
			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 23:
			copy = "<h1>Moss covered trees</h1><br>"+
			"<p>The Pacific Northwest's trademark mossy trees. Olympia, Washington.</p>";
			break;
			
		case 24:
			copy = "<h1>Ferry Wake</h1><br>"+
			"<p>Cruising through the San Juan Islands. Somewhere between Victoria, British Columbia and Bellingham, Washington.</p>";
			break;
			
		case 25:
			copy = "<h1>Seaside Sunset</h1><br>"+
			"<p>Evening walk reconnecting with long lost friends. Nanaimo, Vancouver Island.</p>";
			break;
		
	
					

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