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