
// BEGIN IMAGE AND HEADLINE ARRAYS

	myPix = new Array(
"images/install/horton-06-09_1.jpg",
"images/install/horton-06-09_2.jpg",
"images/install/artist-space-05-09_1.jpg",
"images/install/artist-space-05-09_2.jpg",
"images/install/artist-space-05-09_3.jpg",
"images/install/artist-space-05-09_4.jpg",
"images/install/artist-space-05-09_5.jpg",
"images/install/sunday08-06.jpg",
"images/install/sunday08-07.jpg",
"images/install/sunday08-05.jpg",
"images/install/sunday08-04.jpg",
"images/install/sunday08-03.jpg",
"images/install/sunday08-02.jpg",
"images/install/sunday08-01.jpg",
"images/install/Volta-Install-01.jpg",
"images/install/Volta-Install-02.jpg",
"images/install/Volta-Install-03.jpg",
"images/install/Volta-Install-04.jpg",
"images/install/platform-gal.jpg",
"images/install/bibro.jpg",
"images/install/AndersonG_1.jpg",
"images/install/AndersonG_2.jpg"
) // Place Design Sample Images Here
	
	myTitlz = new Array(
"Vistas and Vacant Lots, Horton & Co.",
"Vistas and Vacant Lots, Horton & Co.",
"Nature Preserves, Artists Space",
"Nature Preserves, Artists Space",
"Nature Preserves, Artists Space",
"Nature Preserves, Artists Space",
"Nature Preserves, Artists Space",
"Works on Paper, Sunday L.E.S.",
"Works on Paper, Sunday L.E.S.",
"Works on Paper, Sunday L.E.S.",
"Works on Paper, Sunday L.E.S.",
"Works on Paper, Sunday L.E.S.",
"Works on Paper, Sunday L.E.S.",
"Volta NY",
"Volta NY",
"Volta NY",
"Volta NY",
"Eden's on Fire!, Platform Gallery",
"So Inclined, Denise Bibro Gallery",
"Anderson Gallery",
"Anderson Gallery"
) // Place Design Sample Headlines Here
	
	myDescripz = new Array(
"New York, NY | 2009",
"New York, NY | 2009",
"New York, NY | 2009",
"New York, NY | 2009",
"New York, NY | 2009",
"New York, NY | 2009",
"New York, NY | 2009",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"New York, NY | 2008",
"Seattle, WA | 2008",
"New York, NY | 2007",
"Richmond, VA | 2006",
"Richmond, VA | 2006"
) // 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
