function reposition() {
	offset = document.body.offsetWidth/2 - 370;
	if(offset%22 != 0) {
		offset = offset - offset%22 + 4;
		document.getElementById("container").style.margin="0 0 0 "+ offset +"px";
	}
}

