// IW DRM: change the image of the kid at the top of the page on load
function changeKid () {
	var ranNum = (Math.floor(Math.random() * 3) + 1);  //generates 1 - 6 as the random number
	var choice = ranNum;
	var classToUse = "kid" + choice;
	document.getElementById("homeTopContainer").className = classToUse;
}