			function fixBackground() {				var bgPos = Math.floor((document.body.clientWidth-950)/2);				if (bgPos > 0) {					document.body.style.backgroundPosition = bgPos+"px 0px";				} else {					document.body.style.backgroundPosition = "0px 0px";				}			}			window.onresize = function() {				fixBackground();			}//fixBackground();