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