function reposition() {
	// /* body { text-align: center; } */ /*IE centering - breaks IE6&7 reposition.js*/
	offset = document.body.offsetWidth/2 - 475; // offset = 1/2 size of moved container
	if(offset%5 != 0) { // 5 from offset%5 - the step - the size of BG repeated image
		offset = offset - offset%5; // 5 from offset%5 - the step - the size of BG repeated image
		document.getElementById("wrapperOuter").style.margin="0 0 0 "+ offset +"px";
		// alert(offset);
	}
}
