	scheda=0;
	
	function windowsResize(){
		h=$(window).height();
		if  (h>683){
			//alert(h+" caso1");
			h-=289+25+13+10;
			$("#testo_wrapper").css('height', h);
			$("#testo").css('padding-top', h-287);
		}
		else{
			//alert(h+" caso2");
			h=683-289-25-13;
			$("#testo_wrapper").css( 'height', h );
			$("#testo").css('padding-top', h-297);
		}
	}
	
	$(document).ready(
		function(){
			windowsResize();
			$(window).resize(
				function(){
						windowsResize();
				}
			);
		}
	);
