function resize(){
	oh = $('#content').height();
	nh = $(window).height() - $('#header').outerHeight() - $('#footer').outerHeight() - 100;
	if(nh <= 100){nh = 100;}
	if(nh > oh){$('#content').height(nh);}
}

$(window).load(resize);
$(window).resize(resize);
