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