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

		case 1:
			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 2:
			copy = "<h1>Horses</h1><br>"+
			"<p>Curiosity in Campbellsville, Kentucky.</p>";
			break;
			  
		case 3:
			copy = "<h1>Horses, Campbellsville, Kentucky</h1><br>"+
			"<p>Quarter horses, curious and wary all at the same time. Campbellsville, Kentucky.</p>";
			break;
			
		case 4:
			copy = "<h1>African Drumcorp</h1><br>"+
			"<p>Drumming discovered on a walk through an African neighborhood. Soweto, South Africa.</p>";
			break;
		
		case 5:
			copy = "<h1>Fallen Bird</h1><br>"+
			"<p>Always a sadness... Cincinnati, Ohio.</p>";
			break;
			  
		case 6:
			copy = "<h1>Christmas Lights</h1><br>"+
			"<p>Christmas lights on Tilden Street in Norwood, Ohio.";
			break;
						  
		case 7:
			copy = "<h1>Fireworks</h1><br>"+
			"<p>Fall fireworks with friends in Wisconsin.</p>";
			break;
			  			  
		case 8:
			copy = "<h1>Bonfire</h1><br>"+
			"<p>Bonfire with friends. Rural Kentucky, the Red River Gorge area.</p>";
			break;
			
		case 9:
			copy = "<h1>Togetherness</h1><br>"+
			"<p>Lost and found together. Nashville, Tennessee.</p>";
			break;	
	
		case 10:
			copy = "<h1>Seed Casing</h1><br>"+
			"<p>Tree womb found on a forest trail in Kentucky.</p>";
			break;
			  
		case 11:
			copy = "<h1>Kentucky Dry Dock</h1><br>"+
			"<p>Boat out of luck. Campbellsville, Kentucky.</p>";
			break;
			
		case 12:
			copy = "<h1>Jaguar</h1><br>"+
			"<p>Annual custom car show in the Oak Bay village of Victoria, British Columbia.</p>";
			break;
			
		case 13:
			copy = "<h1>Stained Glass Cross</h1><br>"+
			"<p>Turn of the century stained glass cross at St. Elizabeth&#8217;s, Norwood Ohio.</p>";
			break;
			
		case 14:
			copy = "<h1>Swazi Clinic/Conflicted Message</h1><br>"+
			"<p>Signs painted on the side of a clinic in a squatter settlement in Mbabane, Swaziland. <br><br> "+
			"    Conflicted message outside a country store in the Red River Gorge area, Nada, Kentucky. ";
			break;
				
		case 15:
			copy = "<h1>Beetle</h1><br>"+
			"<p>Insect along a path in Raxaul, northern India.</p>";
			break;


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