

window.onload = function(){ 
        numero = parseInt(Math.random() * 6); 
        elm = document.getElementById('inicio'); 
        cero = numero >= 10 ? '' : '0'; 
        img = 'url(./Images/img'+numero+'.jpg)'; 
        elm.style.backgroundImage = img;
} 


