
function getHeight()
  {

	  if  (document.getElementById("menulat")==null)  {
		  maior=470;
	  } else {
		  var maior = document.getElementById("menulat").offsetHeight;
	  }

	  if  (maior==null)  { maior=470; }
	  if  (document.getElementById("jGallery").offsetHeight>maior)  {
		  maior=document.getElementById("jGallery").offsetHeight;
	  }

	  if  (maior < 470)  {
		  maior = 470;
	  }
	  document.getElementById('menu-lateral').style.height = maior+70+'px';
  }

