var images=["finger_A.jpg", "store4.jpg", "flowers_1.jpg", "giftBask_1.jpg"];
var imageIndex=Math.floor(Math.random()*4);

function loadImage() {
    var i=document.getElementById("image");
    i.style.backgroundImage="url(images/top_strip/"+images[imageIndex]+")";
}
