onload = function() {
	if (screen.width > 1024) {
		images = new Array("/fotos/1440/home01.jpg", "/fotos/1440/home02.jpg", "/fotos/1440/home03.jpg", "/fotos/1440/home04.jpg");
	}	else {
		images = new Array("/fotos/1024/home01.jpg", "/fotos/1024/home02.jpg", "/fotos/1024/home03.jpg", "/fotos/1024/home04.jpg");
	}
	rand = Math.floor(Math.random()*images.length);
	img = images[rand];
	document.body.style.background = "url("+img+") no-repeat fixed";
}