<!-- 

//to fix IE flickering backs
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

//to fix IE min|max widths
function setWidth() {
	if (document.body.clientWidth <= 983) x = "983"
	else if (document.body.clientWidth >= 1350) x = "1350"
	else x = "100%"
	return x;
}


// -->