$(document).ready( function() {
	reGrow();
	
	$(window).resize( function() {
		reGrow();
	});
});

function reGrow() {
	var iLimit = $('#right').innerHeight();
	var iHeight = $(window).height();
	var iGrow = iHeight - 216 - 74 - 30;
	if(iGrow > iLimit) {
		$('#left').css({height: iGrow+'px'});
	} else {
		$('#left').css({height: iLimit+'px'});
	}
	
}
