.wrap{width:expression(document.body.clientWidth > 950 ? "950px" : "auto");height:1%;}
/*The width expression gives the div element with the class wrap a max width of 950px.*/
/*The downside to using expressions is that they fire for every event possible on the page, including mouse movement. This can overwhelm browsers on slower computers if too many expressions are used.*/
/*The style declaration height:1%; fixes a bug where the certain items - menu and TCD logo would stick to the left edge of the window on resize.*/
