function setCopy(imageNumber)
{
	var copy;
	switch(imageNumber)
	{
	
		case 1:
			copy = "<h1>An Island Feast</h1><br>"+
			"<p>A visit with friends living close to the earth. Food planted, and prepared with great care. Galiano Island, Brtish Columbia.</p>";
			break;
			
		case 2:
			copy = "<h1>The work of our Hands</h1><br>"+
			"<p>Wheat becomes fresh bread and morning pancakes. Galiano Island, Brtish Columbia.</p>";
			break;
			
		case 3:
			copy = "<h1>Wheat</h1><br>"+
			"<p>Wheat grown and freshly harvested.</p>";
			break;
			
		case 4:
			copy = "<h1>Wheat Basket</h1><br>"+
			"<p>Wheat grown and freshly harvested.</p>";
			break;
			
		case 5:
			copy = "<h1>Onions drying</h1><br>"+
			"<p>Evidently even onions can have a spiritual quality when presented well.</p>";
			break;
			
		case 6:
			copy = "<h1>Vineyard Grapes</h1><br>"+
			"<p>A bountiful summer harvest. Campbellsville, Kentucky.</p>";
			break;
			
		case 7:
			copy = "<h1>Shop Window</h1><br>"+
			"<p>Beaded necklaces in a Tamil market in Kathmandu, Nepal.</p>";
			break;
					
		case 8:
			copy = "<h1>String of Lights</h1><br>"+
			"<p>Camping, Northern Vancouver Island.</p>";
			break;
			
		case 9:
			copy = "<h1>Candle</h1><br>"+
			"<p>Solitude in room 3020. Abbey of Gethsemani a Trappist monastery in Kentucky.</p>";
			break;

		case 10:
			copy = "<h1>The Telecaster</h1><br>"+
			"<p>This guitar has traveled many miles, made a great deal of music and holds many memories. Cincinnati, Ohio.</p>";
			break;
							
		case 11:
			copy = "<h1>Cello Bridge</h1><br>"+
			"<p>Music on fire. Cincinnati, Ohio.</p>";
			break;
					
		case 12:
			copy = "<h1>Human Figure</h1> <br>"+
			"<p>Study of the human figure, Cincinnati, Ohio.</p>";
			break;
			  
		case 13:
			copy = "<h1>Human Figure</h1><br>"+
			"<p>Study of the human figure, Cincinnati, Ohio.</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>Morning Light</h1><br>"+
			"<p>September lights up October. Norwood, Ohio.</p>";
			break;
						
		case 16:
			copy = "<h1>Winter Quietness</h1><br>"+
			"<p>Fresh morning blanket of snow. Norwood, Ohio.</p>";
			break;

		case 17:
			copy = "<h1>Watching Angel</h1><br>"+
			"<p>Angel keeping watch over the sleeping in a graveyard. Trappist monastery, Kentucky.</p>";
			break;

	 	case 18:
			copy = "<h1>Hood Ornament</h1><br>"+
			"<p>Wishing our automobiles could fly in urban Philadelphia.  </p>";
			break;
			
		case 19:
			copy = "<h1>Homemade Pasta</h1><br>"+
			"<p>Friends on Galiano Island, Bristish Columba living close to the earth. Beautiful homemade everything.</p>";
			break;
					  
		case 20:
			copy = "<h1>Bird in Flight</h1><br>"+
			"<p>Always a joy... bird in flight. Victoria, British Columbia.</p>";
			break;

		case 21:
			copy = "<h1>Field in the Wind</h1><br>"+
			"<p>Wind blown field, rural Kentucky.</p>";
			break;

		case 22:
			copy = "<h1>Nestled Trees</h1><br>"+
			"<p>Unusual tree formation in rural Kentucky.</p>";
			break;
			  			 	  
		case 23:
			copy = "<h1>Lilly Pad Seedpods</h1><br>"+
			"<p>Dried seedpods in the south wing courtyard. Abbey of Gethsemani. </p>";
			break;		

		case 24:
			copy = "<h1>Grave Markers</h1><br>"+
			"<p>Resting place for the Trappist monks at the Abbey of Gethsemani.</p>";
			break;
		
		case 25:
			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 26:
			copy = "<h1>The Quiet of Morning</h1><br>"+
			"<p>Morning fog at Oak Bay harbor in Victoria, British Columbia.</p>";
			break;

		case 27:
			copy = "<h1>Morning Mist</h1><br>"+
			"<p>Early morning symmetry in a farmers field, rural Kentucky.</p>";
			break;
				  
		case 28:
			copy = "<h1>Farmer's Hands Closeup</h1><br>"+
			"<p>The wild gentleness of a father's heart. Rural Campbellsville, Kentucky.</p>";
			break;	
			  
		case 29:
			copy = "<h1>Farmer's Hands</h1><br>"+
			"<p>The wild gentleness of a father's heart. Rural Campbellsville, Kentucky.</p>";
			break;	
							
		case 30:
			copy = "<h1>Weathered Beachwood 1</h1><br>"+
			"<p>Weathered by the rugged wind and water of a Canadian coastline. Victoria, British Columbia.</p>";
			break;
							

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