$(function() {
	setWidth();
	$(window).bind('resize', function() {
	    setWidth();
	});
});

function setWidth() {
	var width = $(document).width();
	var windowWidth = $(window).width();
	
	if(windowWidth < 1000) {
		$('body').css('width', width + 'px');
	} else {
		$('body').css('width', 'auto');
	}
	
}
