// used on HOME page only

function getWindowWidth() {
  var width = 0;
  if( typeof( window.innerWidth ) == 'number' ) width = window.innerWidth; // non-IE
  else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) width = document.documentElement.clientWidth; //IE 6+ in 'standards compliant mode'
  else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) width = document.body.clientWidth; //IE 4 compatible
  return width;
}


function resize() {
	var normal_width = 950;
	var normal_xpos = 192;
	var offset_ctr = (normal_width/2)-normal_xpos;

	var width = getWindowWidth();
	var xpos = 192;
	if ( width>normal_width ) xpos = (width/2)-offset_ctr;
	document.getElementById("splash").style.backgroundPosition = xpos+"px 94px";
}


window.onresize = resize;
window.onload = resize;
