$(document).ready(function(){
							
		checkHeight();

		window.onorientationchange = checkHeight;

						   
});

function checkHeight(){
	if($(window).height()>900){
					
		/*$("#content").animate(function(){							   
			$(this).height();
		});*/
		
		var altezza = $(window).height();
		
		$("#content").animate({
			height: altezza
			}, 100, 'easeOutQuad', function() {
	    });

		
	}else{
		
			$("#content").animate({
				height: "900"
				}, 100, 'easeOutQuad', function() {
			});
	}
	
}
