function adjustHeight() {
	var img, text, content, heightText, heightImg, contentHeight;
	img = document.getElementById('img'); 
	text = document.getElementById('text');
	if(text.offsetHeight) {
		heightText = text.offsetHeight;
	} 
	else if(text.style.pixelHeight) {
		heightImg = text.style.pixelHeight;
	}
	if(img.offsetHeight) {
		heightImg = img.offsetHeight;
	} 
	else if(img.style.pixelHeight) {
		heightImg = img.style.pixelHeight;
	}
	if(heightText > heightImg) {
		contentHeight = heightText;
	} 
	else {
		contentHeight = heightImg;
	}
	content = document.getElementById('content');
	content.style.height = (contentHeight + 110) + "px";
}

function adjustImages() {
	if(navigator.appName == "Microsoft Internet Explorer") {
		img.style.paddingTop = 0;
	}
}
