var ARR = new Array();
ARR[0] = new Image(); ARR[0].src = "miscphotos/chris_noah_salzburg.jpg";
ARR[1] = new Image(); ARR[1].src = "miscphotos/chris.jpg";
ARR[2] = new Image(); ARR[2].src = "miscphotos/chris19.jpg";
ARR[3] = new Image(); ARR[3].src = "miscphotos/chris13.jpg";
ARR[4] = new Image(); ARR[4].src = "miscphotos/chris3.jpg";
ARR[5] = new Image(); ARR[5].src = "miscphotos/chris4.jpg";
ARR[6] = new Image(); ARR[6].src = "miscphotos/chris5.jpg";
ARR[7] = new Image(); ARR[7].src = "miscphotos/chris6.jpg";
ARR[8] = new Image(); ARR[8].src = "miscphotos/chris7.jpg";
ARR[9] = new Image(); ARR[9].src = "miscphotos/chris8.jpg";
ARR[10] = new Image(); ARR[10].src = "miscphotos/chris9.jpg";
ARR[11] = new Image(); ARR[11].src = "miscphotos/chris16.jpg";
ARR[12] = new Image(); ARR[12].src = "miscphotos/chris11.jpg";
ARR[13] = new Image(); ARR[13].src = "miscphotos/chris12.jpg";
ARR[14] = new Image(); ARR[14].src = "miscphotos/chris18.jpg";
ARR[15] = new Image(); ARR[15].src = "miscphotos/chris2.jpg";
ARR[16] = new Image(); ARR[16].src = "miscphotos/chris14.jpg";
ARR[17] = new Image(); ARR[17].src = "miscphotos/chris15.jpg";
ARR[18] = new Image(); ARR[18].src = "miscphotos/chris10.jpg";
ARR[19] = new Image(); ARR[19].src = "miscphotos/chris17.jpg";
curIndex=0;

function nextImageInArray() 
{
	curIndex=curIndex+1;
	if (curIndex>19)
		curIndex=0;
	node = document.getElementById("imagearraytarget");
	node.src=ARR[curIndex].src;
}
		

