//returns picture data to page slide show caption fields

function findPicData (picNum)  {


	pic1 = new Array("Wilson McLaughlin House, oil painting by Edith L. Wilson")
	pic2 = new Array("Looking up the drive from New Marlborough Road")
	pic3 = new Array("From Main Road, across the field to the house")
	pic4 = new Array("Summer morning sun on the east wall of the house")
	pic5 = new Array("Enjoying the glories of June; Edith's sculpture sits atop the original (c 1850's) well")
	pic6 = new Array("Summer morning, wet grass")
	pic7 = new Array("Some of the members of the Wilson McLaughlin House Committee")
	pic8 = new Array("Donating items for the tag sale fundraiser")
	pic9 = new Array("The quilt made by the Montery Piecemakers for our benefit")
	pic10 = new Array("View through the large spruces on the north side of the house")
	pic11 = new Array("Flowers in the field are just part of the invitation")
	pic12 = new Array("The grass has been mowed")
	pic13 = new Array("Looking north from down below the house up to the knoll")
	pic14 = new Array("Mike and Jim repair the roof; it needed it!")
	pic15 = new Array("The roof is complete")


	picData = new Array("", pic1, pic2, pic3, pic4, pic5, pic6, pic7, pic8, pic9, pic10, pic11, pic12, pic13, pic14, pic15);

	artdata = picData[picNum];
 
  	return (artdata);
}

