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