function reposition() {
	// /* body { text-align: center; } */ /*IE centering - breaks IE6&7 reposition.js*/
	//alert('6786');
	offset = document.body.offsetWidth/2 - 490; // 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("header").style.margin="0 0 0 "+ offset +"px";
		document.getElementById("menu").style.margin="0 0 0 "+ offset +"px";
		document.getElementById("content").style.margin="0 0 0 "+ offset +"px";
		document.getElementById("footer").style.margin="0 0 0 "+ offset +"px";
		// alert(offset);
	}
}
