Could someone assist me in identifying the issue with this code that only displays the same image, tree.png, three times?
var bankImages = ["troyano", "backup", "tree"];
jQuery.each( bankImages, function( i, val ) {
$('#imagesContainer').css("background-image","url(../images/" + val + ".png)")
.animate({width: "show"})
.delay(500)
.animate({width: "hide"});
});