window.onload = init;

function init() {
	//display picture of Claudia Schober aligned at the botton if height of content is larger than the picture
	cw=document.getElementById('content_wrapper')
	if(cw.offsetHeight>600) {
		cw.style.backgroundPosition='right bottom'
	}
}