function fixhdrWidth() {
	var maxwidth = document.body.clientWidth;
	if (maxwidth < 820)
		maxwidth = 820;
	$('#masthead_wide').css({ width: maxwidth });
	$('#navigation').css({ width: maxwidth });
	$('#omx_branding_public').css({ width: maxwidth });

}

if (typeof document.body.style.maxHeight == "undefined") {
	var resizeTimer = null;
	$(window).bind('resize', function() {
	   if (resizeTimer) clearTimeout(resizeTimer);
	   resizeTimer = setTimeout(fixhdrWidth, 100);
	});
}

