function rotatePhoto() {
	var rand = Math.floor(Math.random()*9)
	document.getElementById('home_alpha').style.backgroundImage = "url(assets/css/images/home"+rand+".jpg)";
	//console.log(document.getElementById('home_alpha').backgroundImage);
}

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