

function changeHomeContentBg () {
	var ranNum = (Math.floor(Math.random() * 4) + 1);  //generates 1 - 4 as the random number
	var choice = ranNum;
	var classToUse = "homeBg" + choice;
	document.getElementById("homeLeft").className = classToUse;
}
