function setCopy(imageNumber)
{
	var copy;
	switch(imageNumber)
	{

		case 1:
			copy = "<h1>Wood Shavings in sunlight</h1><br>"+
			"<p>The leftovers from boat building splashed in sunlight.</p>";
			break;
			
		case 2:
			copy = "<h1>Wood Shavings</h1><br>"+
			"<p>Beautifully delicate contrasting the sturdiness of the resulting boat.</p>";
			break;
			
		case 3:
			copy = "<h1>Seasoned Barn</h1><br>"+
			"<p>This Indiana barn has developed a wonderful patina.</p>";
			break;
			
		case 4:
			copy = "<h1>Peacock</h1><br>"+
			"<p>Whenever we doubt the creative spirit, we should simply visit a zoo. Cincinnati, Ohio.</p>";
			break;
			
		case 5:
			copy = "<h1>Stone and brick texture</h1><br>"+
			"<p>The Citadelle in Haiti is a massive stone structure built by up to 20,000 workers between 1805 "+
			"and 1820 as part of a system of fortifications designed to keep the newly-independent nation of Haiti "+
			"safe from French incursions.</p>";
			break;
			
		case 6:
			copy = "<h1>Seasoned Barn</h1><br>"+
			"<p>The walls of the San Souci Palace in northern Haiti at the foot of the Citadelle, has lost  "+
			"the epidermis layer and therefore displays a wonderful composite texture of stone and brick.</p>";
			break;
			
		case 7:
			copy = "<h1>Hut wall</h1><br>"+
			"<p>Texture on a fishing village hut in northern Haiti.</p>";
			break;
				
		case 8:
			copy = "<h1>Vineyard Grapes</h1><br>"+
			"<p>Five rows, Two tons of grapes, one morning's work. Campbellsville, Kentucky.</p>";
			break;	
		
		case 9:
			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 10:
			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 11:
			copy = "<h1>Hydrangea, Bed of Flowers</h1><br>"+
			"<p>Flower textures are ubiquitous in Victoria, British Columbia.</p>";
			break;
			
		case 12:
			copy = "<h1>Lilly Pad In the Sun</h1>"+
			"<br>"+
			"<p>Lilly pad, courtyard pond. Gethsemani, Kentucky.</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>Tablecloth of Beans</h1><br>"+
			"<p>Wedding table decoration. Indiana.</p>";
			break;
			  
		case 15:
			copy = "<h1>Dancing Light</h1><br>"+
			"<p>Dancing light upon a lake, encountered on a trail walk, central Kentucky.</p>";
			break;
			  	
		
		case 16:
			copy = "<h1>Dead Vines</h1><br>"+
			"<p>Dead vines in Irwin, Pennsylvania.</p>";
			break;	
			
		case 17:
			copy = "<h1>Dry Creek Bed</h1><br>"+
			"<p>Dry creek bed in rural Kentucky.</p>";
			break;

		case 18:
			copy = "<h1>Distressed Wall</h1><br>"+
			"<p>Aged courtyard wall of a Trappist monastery in Kentucky.</p>";
			break;
			  
		case 19:
			copy = "<h1>Rock Sculptures</h1><br>"+
			"<p>Unearthed rock, God&#8217;s handiwork. Abbey of Gethsemani, Kentucky.</p>";
			break;
	
		case 20:
			copy = "<h1>Stacked Wood</h1><br>"+
			"<p>The orderly ends of a woodpile in Campbellsville, Kentucky.</p>";
			break;
	
		case 21:
			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 22:
			copy = "<h1>Sailboat Reflections</h1><br>"+
			"<p>Sailboat masts dancing on the water at Thieves Bay, Pender Island, British Columbia.</p>";
			break;
				
		case 23:
			copy = "<h1>Sailboat Reflections</h1><br>"+
			"<p>Sailboat reflections like watercolor paintings. Thieves Bay, Pender Island, British Columbia.</p>";
			break;
	
		case 24:
			copy = "<h1>Stepped Fountain</h1><br>"+
			"<p>Ault Park stepped fountain in Cincinnati Ohio.</p>";
			break;
			
		case 25:
			copy = "<h1>The Living Sea</h1><br>"+
			"<p>Ferry wake observed while traveling between Port Angeles, Washington "+
			"   and Victoria, British Columbia.</p>";
			break;
			
		case 26:
			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 27:
			copy = "<h1>Wheat</h1><br>"+
			"<p>Textures within textures. Galiano Island, British Columbia.</p>";
			break;
			
		default:
			break;
	}
	document.getElementById("copy").innerHTML = copy;
}
