/***** © 2008 zeta software GmbH
Layout: Personal *****/

function height()
{
	var thirdwrapper = document.getElementById('thirdwrapper');
	var work = document.getElementById('work');
	var secondwrapper = document.getElementById('secondwrapper');
	var midshadow = document.getElementById('midshadow');
	work.style.height = (thirdwrapper.clientHeight)+"px";
	midshadow.style.height = (secondwrapper.clientHeight-26)+"px";
}
window.onload=height;
