window.smallresLoader=window.onload;
window.smallresResizer=window.onresize;
window.onload=function() {
	if (this.smallresLoader) this.smallresLoader();
	if (this.smallresResizer) this.smallresResizer();
	setInterval(
		function() {
			width=document.all?document.body.offsetWidth:window.innerWidth;
			if (width<880) {
				document.getElementById("container").style.left="0px";
				document.getElementById("container").style.margin="0px";
			}
		},1
	)
}