jQuery(document).ready(function($){
	
	function set_height() {
		var h = $(window).height() - 290;
		if(h < 100) {
			h = 100;
		}
		$('#main .article').height(h);
	}
	
	set_height();
	$(window).resize(function(){
		set_height();
	});
});
