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