I am making an image map and have been trying to make images fade in and out in succession by changing the image source (this is important). Problem with the code below, is that it only uses the last source image and fades that in and out 5 times. I of course would like each image to fade in and out once. Brain may explode soon. Any idea what I am doing wrong. As you can tell, I am a noob at jQuery. Appreciate the help.
imgArray = Array(
"img0.png",
"img1.png",
"img2.png",
"img3.png",
"img4.png"
);
jQuery(document).ready(function() {
for(i=0; i<5; i++)
jQuery('#imgHolder').attr('src', imgArray[i]).fadeIn('slow').delay(500).fadeOut('slow')
});
