window.onload = function setHeight() {
	var theContainer = document.getElementById('wrap');
	var containerHeight = ((theContainer.offsetHeight)/2);
	theContainer.style.marginTop='-'+(containerHeight)+'px';
}

