// ns4 styles
if (document.ids) {		
	with (document.ids.footernav) {
		borderStyle = 'solid'
		borderColor = '#B4BED8'
		borderWidth = '1px'
		width = '750px'
		marginTop = '-5px'
	}
	
	with (document.ids.dayNav) {
		var lm = parseInt((window.innerWidth - 734) / 2)
		top = (parseInt(top) + 16) + 'px'
		textAlign = 'left'
		left = (lm + 600) + 'px'
	}
}

// resize bugfix

function NS4_restore() {
   if (window.loadWidth != window.innerWidth || window.loadHeight != window.innerHeight) {
      history.go(0) //reload page
   }
}

function NS4_initResizeBugfix() {
	if (document.layers) {
	   window.loadWidth = window.innerWidth
	   window.loadHeight = window.innerHeight
	   window.onresize = NS4_restore
	}
}

NS4_initResizeBugfix() // do it