function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		//thisHeight = $(this).height();
		// Aggiunto da Giorgio il 08/04/09 (risolve problema di errata altezza)
		//var d = document.getElementById('container') // Get div element
  		//var thisHeight = d.offsetHeight // div height		
		// Modifica della funzione di Giorgio
		thisHeight = $('#container').height();
		if(thisHeight > tallest) {
			tallest = (thisHeight - 524);
		}
	});
	if (tallest == 0) {
		tallest = 524;
	}
	$(".shadow_central").each(function() {
		$(this).height(tallest);
	});	
	//group.height(tallest);
}
