$(document).ready(function(){
	function browser_resize() {
		var contentwidth = $(window).width();
		if ((contentwidth) < '850'){
			$('html').css("overflow-x","scroll");
		}
		else if ((contentwidth) >= '850'){
			$('html').css("overflow-x","hidden");
		}
	}

	browser_resize();//Triggers when document first loads    

	$(window).bind("resize", function(){//Adjusts image when browser resized
		browser_resize();
	});

});
