var parametrstyle = document.body.style;
var i=2;
while (i!=40){
function bg(){
var foto = 'url(foto/' +i+ '.jpeg)';
parametrstyle.background = foto ;
parametrstyle.backgroundSize = 'cover';
parametrstyle.backgroundAttachment = 'scroll';
parametrstyle.backgroundPosition = '100% 50%';
parametrstyle.margin ='0';
};
setTimeout(bg, 2000);
i++;
};