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