function ricalcola_altezza(){
	
	h_content = $("#ifr_content").contents().find("#content").height();
	
	if ( $.browser.safari ) {
  		h_content += 14;
	}	
	if ( $.browser.mozilla ) {
  		h_content += 1;
	}		


	h_totale = document.getElementById('wrapper_sfondo').clientHeight;
	
	
	
	h_top_nero =  document.getElementById('top_nero').clientHeight;
	h_menu =  document.getElementById('menu').clientHeight;
	h_testata_center =  document.getElementById('testata_center').clientHeight;
	h_footer = document.getElementById('footer').clientHeight;
	
	h_rimanente = h_totale - h_top_nero - h_menu - h_testata_center - h_footer - h_content;


	//$("#ifr_content").css("height", h_content, function() {
	$("#ifr_content").animate({ height: h_content+"px"}, 1, function() {													  
		if(h_rimanente > 0){
			$("#footer").css("margin-top", h_rimanente);
		};
	});
}
