document.ontouchmove = function(e){ e.preventDefault(); }

$( document ).ready( function() {

	var $body = $('body'); //Cache this for performance
	
	var setBodyScale = function() {
		var scaleFactor = 1.0,
			scaleSource = $body.width(),
			maxScale = 6000,
			minScale = 30;

		var fontSize = scaleSource * scaleFactor; 

		if (fontSize > maxScale) fontSize = maxScale;
		if (fontSize < minScale) fontSize = minScale; 

		$('#nuthing').css('font-size', fontSize + '%');
		$('#nuthing').css('visibility', 'visible');
	}

	$(window).resize(function(){
		setBodyScale();
	});
	
	//Fire it when the page first loads:
	setBodyScale();
});
