function img () {
var img, arr, count;
arr = ['img/2.png', 'img/football.jpg'], адрес картинок.
count = 0;
img = document.getElementById('img');
setTimeout(function move(){
img.src = arr[count];
count++;
setTimeout(move, 1000);
if(count > arr.length-1) count = 0;
}, 1000)
}
img();
Ты картинку з сервера затягуеш ?.
я в пхп 0 (