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

