
//***********************************************
//changes pictures with each text with mouse over

//checks if browser can read images
//sets alternative images
	if (document.images)
		{
		weddingSanctuaryPicture = new Image(510,225);
		weddingSanctuaryPicture.src = "images/sanctuary2.jpg";
				
		coffeeHourPicture = new Image(510,225);
	    coffeeHourPicture.src = "images/coffeehour.jpg";

		childCarePicture = new Image(510,225);
		childCarePicture.src = "images/childcare2.jpg";
		
		childrensPicture = new Image(510,225);
		childrensPicture.src = "images/children_services.gif";
		
		musicPicture = new Image(510,225);
		musicPicture.src = "images/music.jpg";
		
		}

//placeholders if browser has no javascript
	else
		{
		weddingSanctuaryPicture = "";
		coffeeHourPicture = "";
        childCarePicture = "";
		childrensPicture = "";
        musicPicture = "";
        }
		
		
//function for changing images
function changePicture(picName,imgName)
{
		if (document.images)
		{   
			//detects image object and change parameters
			imgOn=eval (imgName + ".src");
			
			//takes image name and adds .src so script can find location
			document[picName].src= imgOn;
	         }
}
		
//end changes pictures with each text with mouse over
//***************************************************