//returns picture data to oil page slide show caption fields

function findPicData (picNum)  {

	pic1 = new Array("Gold Exchange", "11 x 14", "SOLD")
	pic2 = new Array("Marsh Edge", "8 x 10", "SOLD")
	pic3 = new Array("Here Comes the Sun", "9 x 12", "SOLD")
	pic4 = new Array("Letting Go", "14 x 18", "SOLD")
	pic5 = new Array("Influence", "7 x 12", "SOLD")
	pic6 = new Array("Whisper Blue", "20 x 24", " ")
	pic7 = new Array("Landfall", "16 x 20", "NFS")
	pic8 = new Array("Release", "6 x 13.5", " ")
	pic9 = new Array("Cold But Still Running", "12 x 16", " ")
	pic10 = new Array("The Old Ranch", "12 x 16", "SOLD")
	pic11 = new Array("The Mist Beginning", "16 x 20", "SOLD")
	pic12 = new Array("Wildflower Pool", "12 x 16", "SOLD")
	pic13 = new Array("Aspen Welcome", "11 x 14", " ")
	pic14 = new Array("Baja Byway", "9 x 12", " ")

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

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

