function autoSize(){
	var clientScreenWidth = screen.width;
	if (clientScreenWidth < 1280){
		var pElements = document.getElementById('content').getElementsByTagName('p');
		for (var i = 0; i < pElements.length; i++){
			pElements.item(i).style.maxWidth = 523 + 'px';
		}
	}
}
window.onload = autoSize;