function switchPic() {
        newImage = "url(images/background"+(Math.floor(Math.random()*4)+1)+".jpg)";
        document.getElementById('Good').style.backgroundImage = newImage;
		document.getElementById('Good').style.backgroundPosition = "center";
		document.getElementById('Good').style.backgroundRepeat = "no-repeat";
      }