ок, извратимся донемогу))
var i = 1, int, cont, img;
cont = document.body;
int = setInterval(function () {
    img = document.createElement('img');
    img.src = 'http://ftp.sktemp.ru/building8003.jpg?' + Math.random() + '';
    img.style.zIndex = i++;
    img.style.position = 'absolute';
    cont.appendChild(img);
    if (document.getElementsByTagName('img').length >= 3) {
        cont.removeChild(document.getElementsByTagName('img')[0]);
    }
}, 300);