function rotatePhoto() {
	var rand = Math.floor(Math.random()*41)
	document.getElementById('spotlight').style.backgroundImage = "url(stylesheets/images/main-spotlight"+rand+".jpg)";
}

addLoadEvent(rotatePhoto);