function setCopy(imageNumber)
{
	var copy;
	switch(imageNumber)
	{
		case 1:
			copy = "<h1>Shop Window</h1><br>"+
			"<p>Beaded necklaces in a Tamil market in Kathmandu, Nepal.</p>";
			break;

		case 2:
			copy = "<h1>Thumbnail Cross</h1><br>"+
			"<p>A cross scribed into a stone on one of the trails of a Trappist monastery in Kentucky.</p>";
			break;
				
		case 3:
			copy = "<h1>Cello Bridge</h1><br>"+
			"<p>Music on fire. Cincinnati, Ohio.</p>";
			break;
			  
		case 4:
			copy = "<h1>Grave Markers</h1><br>"+
			"<p>Resting place for the Trappist monks at the Abbey of Gethsemani.</p>";
			break;
			  
		case 5:
			copy = "<h1>Lilly Pad Seedpods</h1><br>"+
			"<p>Dried seedpods in the south wing courtyard. Abbey of Gethsemani. </p>";
			break;
				
		case 6:
			copy = "<h1>Nestled Trees</h1><br>"+
			"<p>Unusual tree formation in rural Kentucky.</p>";
			break;
			  
		case 7:
			copy = "<h1>Human Figure</h1> <br>"+
			"<p>Study of the human figure, Cincinnati, Ohio.</p>";
			break;
			  
		case 8:
			copy = "<h1>Human Figure</h1><br>"+
			"<p>Study of the human figure, Cincinnati, Ohio.</p>";
			break;
			  
		case 9:
			copy = "<h1>Fallen Bird</h1><br>"+
			"<p>Always a sadness... Cincinnati, Ohio.</p>";
			break;
			  
		case 10:
			copy = "<h1>Bird in Flight</h1><br>"+
			"<p>Always a joy... bird in flight. Victoria, British Columbia.</p>";
			break;

		case 11:
			copy = "<h1>Beetle</h1><br>"+
			"<p>Insect along a path in Raxaul, northern India.</p>";
			break;

		case 12:
			copy = "<h1>Hood Ornament</h1><br>"+
			"<p>Wishing our automobiles could fly in urban Philadelphia.  </p>";
			break;
			  
		case 13:
			copy = "<h1>Field in the Wind</h1><br>"+
			"<p>Wind blown field, rural Kentucky.</p>";
			break;
				
		case 14:
			copy = "<h1>Mahogany Porthole</h1><br>"+
			"<p>Wooden Ship Regatta, Victoria inner harbor, Vancouver Island, British Columbia.</p>";
			break;
				
		case 15:
			copy = "<h1>Watching Angel</h1><br>"+
			"<p>Angel keeping watch over the sleeping in a graveyard. Trappist monastery, Kentucky.</p>";
			break;
										
		case 16:
			copy = "<h1>Winter Quietness</h1><br>"+
			"<p>Fresh morning blanket of snow. Norwood, Ohio.</p>";
			break;
							
		case 17:
			copy = "<h1>African Drumcorp</h1><br>"+
			"<p>Drumming discovered on a walk through an African neighborhood. Soweto, South Africa.</p>";
			break;
							
		case 18:
			copy = "<h1>Weathered Beachwood 1</h1><br>"+
			"<p>Weathered by the rugged wind and water of a Canadian coastline. Victoria, British Columbia.</p>";
			break;
							
		case 19:
			copy = "<h1>Weathered Beachwood 2</h1><br>"+
			"<p>Weathered by the rugged wind and water of a Canadian coastline. Victoria, British Columbia.</p>";
			break;
							
		case 20:
			copy = "<h1>Morning Light</h1><br>"+
			"<p>September lights up October. Norwood, Ohio.</p>";
			break;
							
		case 21:
			copy = "<h1>African Dry Cleaner</h1><br>"+
			"<p>A wrong turn down a deadend street offered up this surprise. Soweto, South Africa.</p>";
			break;
			
		case 22:
			copy = "<h1>Vineyard Grapes</h1><br>"+
			"<p>A bountiful summer harvest. Campbellsville, Kentucky.</p>";
			break;

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