jQuery(function($) {
	$("a[rel='external']").attr('target', '_blank');
	resizeContent();
	$(window).resize(resizeContent);
	function resizeContent() {
		var height = Math.max(parseInt($("#content, #column-content, #photo-content").height()), parseInt($(window).height()) - parseInt($("#header").height()) - parseInt($("#footer").height()) - parseInt($("#main-nav-wrap").height()));
		$("#content, #column-content, #photo-content").css('minHeight', height);
	}
});
