function rotatePhoto() {
	var rand = Math.floor(Math.random()*9)
	document.getElementById('wrapper').style.background = "url(/stylesheets/images/home_header"+rand+".jpg) 595px top no-repeat";
}

window.onload = function() {
	rotatePhoto();
}
