function getW() {
  if( typeof( window.innerWidth ) == 'number' ) {
    return (window.innerWidth);
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    return (document.documentElement.clientWidth);
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    return (document.body.clientWidth);
  }
}
function a(){
	var w = getW();
	if (w <= 920){
		window.scrollTo(139, 0);
	}
	else if (w < 1258){
		window.scrollTo((1258-w)/2, 0);
	}
}
if (window.addEventListener){
	window.addEventListener("DOMContentLoaded", a, false);
}
else{
	window.attachEvent("onload", a);
}

