// fix FF rounding error when using backgrounds measured from the center of a web page, on resize window
if (navigator.userAgent.indexOf("Firefox")!=-1) {
	window.onresize = function() {
		if (window.outerWidth % 2 != 0) {
			javascript:void(window.outerWidth-=1);
		}
	}
}
