$(window).load(function() {
	if ($("#content").height() > ($("#sidebar").height() + 3)) {
		$("#sidebar").css("height", $("#content").height() - 3);
	}
});

function positionImage() {
	if ((($("#headerimg").height() - $("#headerimg img").height()) / 2) > 4) {
		$("#headerimg img").css("marginTop", (($("#headerimg").height() - $("#headerimg img").height()) / 2));
	}
}
