function setCopy(imageNumber)
{
	var copy;
	switch(imageNumber)
	{
		case 1:
			copy = "<h1>The Living Sea</h1><br>"+
			"<p>Ferry wake observed while traveling between Port Angeles, Washington "+
			"   and Victoria, British Columbia.</p>";
			break;

		case 2:
			copy = "<h1>Stepped Fountain</h1><br>"+
			"<p>Ault Park stepped fountain in Cincinnati Ohio.</p>";
			break;
			  
		case 3:
			copy = "<h1>Sailboat Reflections</h1><br>"+
			"<p>Sailboat masts dancing on the water at Thieves Bay, Pender Island, British Columbia.</p>";
			break;
				
		case 4:
			copy = "<h1>Sailboat Reflections</h1><br>"+
			"<p>Sailboat reflections like watercolor paintings. Thieves Bay, Pender Island, British Columbia.</p>";
			break;
				
		case 5:
			copy = "<h1>Shimmering Creek Bed</h1><br>"+
			"<p>Shimmering creek bed encountered on a hike through the Red River Gorge area, eastern Kentucky.</p>";
			break;
				
		case 6:
			copy = "<h1>Stacked Wood</h1><br>"+
			"<p>The orderly ends of a woodpile in Campbellsville, Kentucky.</p>";
			break;
			  
		case 7:
			copy = "<h1>Rock Sculptures</h1><br>"+
			"<p>Unearthed rock, God&#8217;s handiwork. Abbey of Gethsemani, Kentucky.</p>";
			break;
			  
		case 8:
			copy = "<h1>Distressed Wall</h1><br>"+
			"<p>Aged courtyard wall of a Trappist monastery in Kentucky.</p>";
			break;
			  
		case 9:
			copy = "<h1>Dry Creek Bed</h1><br>"+
			"<p>Dry creek bed in rural Kentucky.</p>";
			break;
			  
		case 10:
			copy = "<h1>Dead Vines</h1><br>"+
			"<p>Dead vines in Irwin, Pennsylvania.</p>";
			break;
			  
		case 11:
			copy = "<h1>Dancing Light</h1><br>"+
			"<p>Dancing light upon a lake, encountered on a trail walk, central Kentucky.</p>";
			break;
			  
		case 12:
			copy = "<h1>Tablecloth of Beans</h1><br>"+
			"<p>Wedding table decoration. Indiana.</p>";
			break;
			  
		case 13:
			copy = "<h1>Lilly Pad on the Surface</h1><br>"+
			"<p>Lilly pad in south wing courtyard pond. Abbey of Gethsemani, Kentucky.</p>";
			break;
			  
		case 14:
			copy = "<h1>Lilly Pad In the Sun</h1>"+
			"<br>"+
			"<p>Lilly pad, courtyard pond. Gethsemani, Kentucky.</p>";
			break;
			  
		case 15:
			copy = "<h1>Hydrangea, Bed of Flowers</h1><br>"+
			"<p>Flower textures are ubiquitous in Victoria, British Columbia.</p>";
			break;
						  
		case 16:
			copy = "<h1>Stone Wall</h1><br>"+
			"<p>A stone wall painted in wonderful fashion by the hands of time. Victoria, British Columbia.</p>";
			break;
						  
		case 17:
			copy = "<h1>Corrugated Tin</h1><br>"+
			"<p>Eight by eight foot corrugated tin shacks. Part of a new housing development in Soweto, South Africa.</p>";
			break;
						  
		case 18:
			copy = "<h1>Stacked Stone Wall</h1><br>"+
			"<p>Textured stone wall commemorating students that were murdered in the 1976 Soweto uprising which began to turn the tide of Apartheid. Soweto, South Africa.</p>";
			break;
						  
		case 19:
			copy = "<h1>The Churning of Water</h1><br>"+
			"<p>Much of the movement of souls happens on the water here in the Pacific Northwest. Ferry travel, Gulf Islands, British Columbia.</p>";
			break;
						  
		case 20:
			copy = "<h1>Peacock</h1><br>"+
			"<p>Whenever we doubt the creative spirit, we should simply visit a zoo. Cincinnati, Ohio.</p>";
			break;
			
		case 21:
			copy = "<h1>Vineyard Grapes</h1><br>"+
			"<p>Five rows, Two tons of grapes, one morning's work. Campbellsville, Kentucky.</p>";
			break;



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