/***** © 2009 zeta software GmbH
Layout: Medical *****/

function height()
{
	var content = document.getElementById('content');
	var right = document.getElementById('right');
	right.style.height = (content.clientHeight)+"px";
}
window.onload=height;