window.onresize = checkWidth;

function checkWidth() {

	if ( document.body.clientWidth )
	{
		var column = document.getElementById('main_content')

		if ( document.body.clientWidth > 1000 )
			column.style.width = '700px';
		else
			column.style.width = '80%';
	}
}








































































