imagenes = ['/img/bg.jpg','/img/bg2.jpg','/img/bg3.jpg'];

window.onload = function rotation(){
num = Math.floor(Math.random()*imagenes.length);
  return document.body.style.background = 'url('+imagenes[num]+') no-repeat #000 top center';
}
