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