function setCopy(imageNumber){	var copy;	switch(imageNumber)	{		case 1:			copy = "<h1>Christmas Lights</h1><br>"+			"<p>Christmas lights on Tilden Street in Norwood, Ohio.";			break;		case 2:			copy = "<h1>Candle</h1><br>"+			"<p>Solitude in room 3020. Abbey of Gethsemani a Trappist monastery in Kentucky.</p>";			break;			  		case 3:			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 4:			copy = "<h1>Seed Casing</h1><br>"+			"<p>Tree womb found on a forest trail in Kentucky.</p>";			break;			  		case 5:			copy = "<h1>Kentucky Dry Dock</h1><br>"+			"<p>Boat out of luck. Campbellsville, Kentucky.</p>";			break;			  		case 6:			copy = "<h1>The Secret Garden</h1><br>"+			"<p>The view just beyond the &#8220;Monastery area&#8221; sign at a Trappist"+			"  monastery in Kentucky.</p>";			break;			  		case 7:			copy = "<h1>Morning Mist</h1><br>"+			"<p>Early morning symmetry in a farmers field, rural Kentucky.</p>";			break;			  		case 8:			copy = "<h1>The Quiet of Morning</h1><br>"+			"<p>Morning fog at Oak Bay harbor in Victoria, British Columbia.</p>";			break;			  		case 9:			copy = "<h1>HIV/AIDS Clinic</h1><br>"+			"<p>AIDS clinic in the northern mountains of the Kingdom of Swaziland.</p>";			break;						case 10:			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 11:			copy = "<h1>Hong Kong Market/ Urban Sunset</h1><br>"+			"<p>A busy Stanley Market on Hong Kong Island.<br><br>"+			 "    Urban sunset in Norwood Ohio. </p>";			break;			  		case 12:			copy = "<h1>Urban Sunset</h1><br>"+			"<p>Urban neighborhood sunset, Norwood, Ohio.";			break;			  		case 13:			copy = "<h1>Jaguar</h1><br>"+			"<p>Annual custom car show in the Oak Bay village of Victoria, British Columbia.</p>";			break;			  		case 14:			copy = "<h1>Bonfire</h1><br>"+			"<p>Bonfire with friends. Rural Kentucky, the Red River Gorge area.</p>";			break;			  		case 15:			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 16:			copy = "<h1>Farmer's Hands</h1><br>"+			"<p>The wild gentleness of a father's heart. Rural Campbellsville, Kentucky.</p>";			break;				  		case 17:			copy = "<h1>Farmer's Hands Closeup</h1><br>"+			"<p>The wild gentleness of a father's heart. Rural Campbellsville, Kentucky.</p>";			break;				  		case 18:			copy = "<h1>Togetherness</h1><br>"+			"<p>Lost and found together. Nashville, Tennessee.</p>";			break;				default:			break;	}	document.getElementById("copy").innerHTML = copy;}