
// BEGIN IMAGE AND HEADLINE ARRAYS - gallery 

	myPix = new Array("images/gallery01/sample-01.gif","images/gallery01/sample-02.gif","images/gallery01/sample-03.gif","images/gallery01/sample-04.gif","images/gallery01/sample-05.gif","images/gallery01/sample-06.gif","images/gallery01/sample-07.gif","images/gallery01/sample-08.gif","images/gallery01/sample-09.gif","images/gallery01/sample-10.gif") // Place Sample Images Here
	
	myTitlz = new Array("Design One","Design Two","Design Three","Design Four","Design Five","Design Six","Design Seven","Design Eight","Design Nine","Design Ten") // Place Sample Headlines Here
	
	myDescripz = new Array("Design One text.","Design Two text.","Design Three text.","Design Four text.","Design Five text.","Design Six text.","Design Seven text.","Design Eight text.","Design Nine text.","Design Ten text.") // Place 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
