function changeDivHeight()
{
	var altura = document.getElementById('fondo_contenido_central').scrollHeight;
    if (altura<509) altura=509;
	document.getElementById('fondo_menu_sant_adria').style.height = (altura+48) + "px";
}