

function rndmImage(images, id, root){
var current;
var luckynum=Math.floor(Math.random()*images.length);
current=root+images[luckynum];
document.getElementById(id).style.background="transparent url(" +current + ") no-repeat";
}


