//~ function sanfona(divtexto, altura) {
	//~ divtexto = $(divtexto);
	//~ if (parseInt(divtexto.getComputedStyle('height')) > altura)
		//~ fx.start({height: [divtexto.retrieve('height').toInt(), altura]});
	//~ else
		//~ fx.start({height: [altura, divtexto.retrieve('height').toInt()]});
//~ }
function sanfona(divtexto, altura) {
	divtexto = $(divtexto);
	if (divtexto.offsetHeight > altura) {
		divtexto.style.height = altura + 'px';
		divtexto.style.overflow = 'hidden';
	} else {
		divtexto.style.height = divtexto.altura + 'px';
		divtexto.style.overflow = 'visible';
	}
}

