//hanges pictures descriptions and can puts a border around picture

//array description for pictures	
var description = new Array();
	 description[0] = "";//#1
description[1] = "<strong><font color=\"#000000\">Welcome to South Chatham Community Church</font></strong> &#150; an interdenominational church<br>located at 2555 Main Street, South Chatham, Cape Cod, MA. We invite you to join us every Sunday morning at 9 a.m. for a Christ centered, Spirit filled worship service blending traditional and contemporary music. We offer child care and Sunday school for children during our service. Our building is completely accessible. We look forward to seeing you.";//this is #2 even though it says 1
	description[2] = "This is the second description";//#3 
	description[3] = "This is the third description";//#4 
	
	

//function showSelected puts a border around selected small picture	
	/*function ShowSelected(selectnumber)
{
	var count = 10;
	for(var i=0;i<count;i++)
	{
		document.getElementById("pic"+i).border = 0;
	}
	document.getElementById("pic"+selectnumber).border = 2;
	changeDescription(selectnumber);
	
}
*/

//changes description for pictures	
function changeDescription(selectDescription)
{

	document.getElementById("showDescription").innerHTML = description[selectDescription];
		
}


