var box = document.getElementById('box'), imgs = ['/image.jpg', '/image2.jpg']; box.onclick = function () { img = imgs.shift(); imgs.push(img); box.style.backgroundImage = img; };