if (document.observe) document.observe("dom:loaded", function() {
  
  var divHeight = ((document.documentElement.scrollHeight) + 'px');
	
	document.getElementById('layoutWrapper').style.height = divHeight;
	document.getElementById('layoutNavigation').style.height = divHeight;
  //alert(divHeight);
  
});
