// BEGIN IMAGE AND HEADLINE ARRAYS

	myPix = new Array(
"images/sculpture/virtuals.jpg",
"images/sculpture/virtual1.jpg",
"images/sculpture/virtual2.jpg",
"images/sculpture/great-turf.jpg",
"images/sculpture/sedges.jpg",
"images/sculpture/med-veg.jpg",
"images/sculpture/reckless.jpg"
); // Place Design Sample Images Here
	
	myTitlz = new Array(
"The Virtual Fields",
"Virtual Field #1",
"Virtual Field #2",
"The Great Turf",
"Sedges Have Edges",
"Meditative/Vegetative",
"Reckless Jewels"
); // Place Design Sample Headlines Here
	
	myDescripz = new Array(
"Installation of Virtual Field #1 and Virtual Field #2 (Coney Island) with audio track Sketch for Saul (First Version) 8:51 by Stephen Vitiello",
"Cube Dimms, 24x24x24in (Overall Dimms, 58x24x24in) | 2009, electroplated plants, security mirror, rock salt, illuminated pedestal",
"Cube Dimms, 24x24x24in (Overall Dimms, 58x24x24in) | 2009, electroplated plants, security mirror, rock salt, illuminated pedestal",
"Cube Dimms, 26x46x26in (Overall Dimms, 58x46x26in) | 2009, electroplated plants, electroplated wood, aluminum can, rock salt",
"Cube Dimms, 21.5x26x26in (Overall Dimms, 58x26x26in) | 2009, electroplated plants, electroplated brick, rock salt",
"Saul Becker and Stephen Vitiello | Cube Dimms, 21.5x26x26in (Overall Dimms, 58x26x26in) | 2009, electroplated plants, audio soundtrack (14:34) speakers, amplifier, dvd player",
"Cube Dimms, 27x14.75x18.75in (Overall Dimms, 59x14.75x18.75in) | 2009, electroplated plants"
); // Place Design Sample Subheadlines Here

// END IMAGE AND HEADLINE ARRAYS


// BEGIN SWITCH PICTURE FUNCTION

	function switchPix(number) { 
	
		if (document.getElementById) {
			
			document.getElementById("slides").src = myPix[number];
			document.getElementById("titles").innerHTML = myTitlz[number];
			document.getElementById("descriptions").innerHTML = myDescripz[number];
			
		}
		
	}

// END SWITCH PICTURE FUNCTION
