
function caricaSfondo() {

//nome = 1 + Math.round(Math.random()*9);

nome = 1 + Math.round(Math.random()*4);

valore = 355;

valore = "0% " + valore + "px";


document.getElementById('Body').style.backgroundPosition = valore;


document.body.background = "/img/background/" + nome + ".gif";

//document.body.background = "/img/background/natale/" + nome + ".jpg";

document.getElementById('Body').style.backgroundAttachment= "fixed";


document.getElementById('Body').style.backgroundRepeat = "repeat-x";

}

