$(document).ready(function(){
	checkHeight();
	$(window).resize(checkHeight);
});

function checkHeight() {
	var height = $(window).height() - ($('.top').height() + $('footer').height());
	if(height > 119){
		$('#content').css('min-height', (height - 119) + 'px');
	};
};
