$(function(){
	var bheight = $(".content").height();
	var wheight = $(window).height();
	if (bheight < (wheight-219)){
		$(".content").css("height", wheight-220);
		};
});
$(window).resize(function() {
	var bheight = $(".content").height();
	var wheight = $(window).height();
	if (bheight < (wheight-219)){
		$(".content").css("height", wheight-220);
		};
});

