function setCopy(imageNumber){	var copy;	switch(imageNumber)	{		case 1:			copy = "<h1>Inner Courtyard</h1> <br>"+			"<p>Old world architecture in downtown Bratislava, Slovakia.</p>";			break;		case 2:			copy = "<h1>Cathedral Exterior</h1><br>"+			"<p>Built solid like the beer, Bratislava, Slovakia.</p>";			break;		case 3:			copy = "<h1>Leper Community</h1><br>"+			"<p>Buildings at a leper colony in Raxaul, northern India.</p>";			break;		case 4:			copy = "<h1>Gethsemani Gate</h1><br>"+			"<p>Departure point of the walks at a Trappist monastery in Kentucky.</p>";			break;		case 5:			copy = "<h1>A Quiet Place</h1><br>"+			"<p>A quiet trellised bench in Ault Park, Cincinnati, Ohio.</p>";			break;			  		case 6:			copy = "<h1>Steps and Water Fountain</h1><br>"+			"<p>The warm light of sunset on the steps and fountain in Ault Park Cincinnati, Ohio.</p>";			break;						case 7:			copy = "<h1>Clothes Line</h1><br>"+			"<p>In this South African squatter settlement east of Cape Town, life is mostly lived in public.</p>";			break;			case 8:			copy = "<h1>Bustling Market</h1><br>"+			"<p>Bustling Stanley Market in Hong Kong, China.</p>";			break;  		case 9:			copy = "<h1>Buddhist Temple</h1><br>"+			"<p>One of the many exterior pillars of a Buddhist temple in Bangkok, Thailand.</p>";			break;			case 10:			copy = "<h1>Museum Window/Cathedral Chandelier</h1><br>"+			"<p>This window is in a museum in Bratislava, Slovakia that was once the home"+ 			"    of Saint Elizabeth, a great friend of the poor. <br><br>"+			"    Cathedral Chandelier in Ronda, Spain.</p>";			break;			case 11:			copy = "<h1>Museum Steps/Museum Arches</h1><br>"+			"<p>Window lit staircase in Bratislava, Slovakia. <br><br>"+			"   Elegant hallway arches in Bratislava, Slovakia.</p>";			break;			case 12:			copy = "<h1>City Square/Spanish Street</h1><br>"+			"<p>Andaluc&iacute;an caf&eacute; on a city square in Cadiz, Spain. <br><br>"+			"  Rhythmic texture of house facades in Grazelama, Spain.</p>";			break;  		case 13:			copy = "<h1>Rooftops/Cobblestone Street</h1><br>"+			"<p>A view of village rooftops in Andaluc&iacute;a, Spain. <br><br>"+			 "  Narrow cobblestone street in Bratislava, Slovakia.</p>";			break;  		case 14:			copy = "<h1>Cairo Alley/Cairo Market</h1><br>"+			"<p>This gentleman guided me on a two hour adventure through the narrow alleyways of Cairo, Egypt. <br><br>"+			 "  Khan el-Khalili Market in Cairo, Egypt. </p>";			break;  		case 15:			copy = "<h1>Snow Table Closeup</h1><br>"+			"<p>Asian patio furniture covered with fresh snow. Tilden backyard in Cincinnati, Ohio.</p>";			break;						case 16:			copy = "<h1>Snow Table</h1><br>"+			"<p>Asian patio furniture covered with fresh snow. Tilden backyard in Cincinnati, Ohio.</p>";			break;			case 17:			copy = "<h1>A place of verticality</h1><br>"+			"<p>The view from the heights of Hong Long Island, looking out over Kowloon, mainland China.</p>";			break;  		case 18:			copy = "<h1>African township 1</h1><br>"+			"<p>Soweto, South Africa contains a very transitional population. Millions of under-resourced Africans "+			 "have come from the rural regions attempting to make a life for themselves in this historical Johannesburg township.</p>";			break;  		case 19:			copy = "<h1>Township housing</h1><br>"+			"<p>Local residents build these tiny shacks out of whatever materials can be found. Housing is for people flocking to Soweto looking for any kind of work. Soweto, South Africa.</p>";			break;		default:			break;	}	document.getElementById("copy").innerHTML = copy;}