function resizepage() {
//divs deklarieren
	var sky = document.getElementById('sky');
	var page = document.getElementById('structure');	
	
	// check if page exists
	if (typeof page == "undefined" || page == null) {
		return false;
	}
	
	//Position des Skyscrapers berechnen	
	if (document.body.offsetWidth > page.offsetWidth) {
		var pagewidth = parseInt(page.offsetWidth);
		var restwidth = parseInt(document.body.offsetWidth-pagewidth)/2;
		sky.style.left = parseInt(restwidth)+parseInt(pagewidth) + 5 +'px';
	}
	else if (document.body.offsetWidth < page.offsetWidth) {
		var pagewidth = parseInt(page.offsetWidth);
		sky.style.left = parseInt(pagewidth) + 5 +'px';
	}
}

window.setTimeout('resizepage()',500);
window.onresize = function (){
 resizepage();
}

