	window.addEvent('domready', function(){
		$('content').setStyle('max-width', window.getWidth() - 200);
	});
	
	window.addEvent('resize', function(){
		$('content').setStyle('max-width', window.getWidth() - 200);
	});
