$(window).resize(function() {

	resizeWin();

});

function resizeWin() {
	
	if ($(window).width() < 900 || $(window).height() < 700) {
		$('#content').css("width", 900);
		$('#content').css("height", 700);
		$('html').css('overflow', 'visible');
		$('body').css('overflow', 'visible');
	} else {
		$('#content').css("width", '100%');
		$('#content').css("height", '100%');
		$('html').css('overflow', 'hidden');
		$('body').css('overflow', 'hidden');
	}
	
}
