
// BEGIN IMAGE AND HEADLINE ARRAYS

	myPix = new Array(
"images/paint-draw/2005/RedTide.jpg",
"images/paint-draw/2005/GreenStick.jpg",
"images/paint-draw/2005/t_scape.jpg",
"images/paint-draw/2005/BlueMoon.jpg",
"images/paint-draw/2005/P_Mtn.jpg",
"images/paint-draw/2005/C-Stuck.jpg",
"images/paint-draw/2005/Palletdrain.jpg"
) // Place Design Sample Images Here
	
	myTitlz = new Array(
"Red Tide",
"Greenstick",
"T_scape",
"Blue Moon",
"P Mtn",
"C-Stuck",
"Pallet Drain"
) // Place Design Sample Headlines Here
	
	myDescripz = new Array(
"48x58in | oil on panel",
"18X18in | oil on panel",
"9.5x11.5in | oil on panel",
"59x53in | oil on panel",
"18x18in | oil on panel",
"22.5x30in | ink and gouache on paper",
"9x12in | 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
