function initBackgroundFix() {
	
		window.onresize = fixBackgroundImage;
		fixBackgroundImage();
	
}

function fixBackgroundImage() {
	var bodyElem = document.getElementById('body');

	if (window.innerWidth < 1000) {
		bodyElem.style.backgroundPosition = "-248px 0px";
	}else {
		bodyElem.style.backgroundPosition = "center 0px";
	}
	return true;
}