﻿var pix = new Array();

function preloadImgSet(landpage) {
    var imgtab = document.getElementById("browse-list-container")
    currImg = Math.floor(Math.random() * pix.length)
    imgtab.style.backgroundImage = "url(/images/" + landpage + "/" + pix[currImg] + ")"
}

// get images for Industry
function preloadImgSetIndustry(industryId) {

    preloadImgSet("Industries/" + industryId); 
}
