<!--
delay1 = 4000; image1Num=0;
artist1 = new Array(25);
artist1[0] = new Image()
artist1[0].src = "image1/image0.jpg" 
artist1[1] = new Image()
artist1[1].src = "image1/image1.jpg" 
artist1[2] = new Image()
artist1[2].src = "image1/image2.jpg"
artist1[3] = new Image()
artist1[3].src = "image1/image3.jpg"
artist1[4] = new Image()
artist1[4].src = "image1/image4.jpg"
artist1[5] = new Image()
artist1[5].src = "image1/image5.jpg"
 artist1[6] = new Image()
artist1[6].src = "image1/image6.jpg"
artist1[7] = new Image()
artist1[7].src = "image7/image7.jpg"
artist1[8] = new Image()
artist1[8].src = "image1/image8.jpg"
artist1[9] = new Image()
artist1[9].src = "image1/image9.jpg"
artist1[10] = new Image()
artist1[10].src = "image1/image10.jpg"
artist1[11] = new Image()
artist1[11].src = "image1/image11.jpg"
artist1[12] = new Image()
artist1[12].src = "image1/image12.jpg"
artist1[13] = new Image()
artist1[13].src = "image1/image13.jpg"
artist1[14] = new Image()
artist1[14].src = "image1/image14.jpg"
artist1[15] = new Image()
artist1[15].src = "image1/image15.jpg"
artist1[16] = new Image()
artist1[16].src = "image1/image16.jpg"
artist1[17] = new Image()
artist1[17].src = "image1/image17.jpg"
artist1[18] = new Image()
artist1[18].src = "image1/image18.jpg"
artist1[19] = new Image()
artist1[19].src = "image1/image19.jpg"
artist1[20] = new Image()
artist1[20].src = "image1/image20.jpg"
artist1[21] = new Image()
artist1[21].src = "image1/image21.jpg"
artist1[22] = new Image()
artist1[22].src = "image1/image22.jpg"


for (i=0; i<23; i++) {
artist1[i] = new Image();
artist1[i].src = "image1/image" + i + ".jpg";}

function animate1() {
document.animation1.src = artist1[image1Num].src;
image1Num++;
if (image1Num > 22) {
image1Num = 0;
}
}
//-----------------------------------------------------------------------------
delay = 3000; imageNum=0;
artist = new Array(4);
artist[0] = new Image()
artist[0].src = "image/image0.jpg" 
artist[1] = new Image()
artist[1].src = "image/image1.jpg" 
artist[2] = new Image()
artist[2].src = "image/image2.jpg"
artist[3] = new Image()
artist[3].src = "image/image4.jpg"
artist[4] = new Image()
artist[4].src = "image/image4.jpg"


for (i=0; i<4; i++) {
artist[i] = new Image();
artist[i].src = "image/image" + i + ".jpg";}

function animate() {
document.animation.src = artist[imageNum].src;
imageNum++;
if (imageNum > 3) {
imageNum = 0;
}
}


//----------------------------------------------------------------------------------------

//-->


 


