
// BEGIN IMAGE AND HEADLINE ARRAYS

	myPix = new Array(
"images/paint-draw/2007/Jetty.jpg",
"images/paint-draw/2007/NewDraw.jpg",
"images/paint-draw/2007/RedPass.jpg",
"images/paint-draw/2007/RidgeLine.jpg",
"images/paint-draw/2007/suicideofsaul.jpg",
"images/paint-draw/2007/Volcano.jpg"
) // Place Design Sample Images Here
	
	myTitlz = new Array(
"Jetty (Coney Island)",
"Untitled",
"Red Pass",
"Ridgeline",
"After Bruegel, (SOS)",
"Untitled"
) // Place Design Sample Headlines Here
	
	myDescripz = new Array(
"40x60in | ink and gouache on paper",
"40x60in | ink and gouache on paper",
"40x60in | ink and gouache on paper",
"22.5x30in | watercolor, ink, and gouache on paper",
"40x60in | ink and gouache on paper",
"15x22.5in | ink and gouache on paper"
) // 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
