$(document).ready(function() {
	$('#author-input').keyup(function() {
		if ($(this).val().length >= 3) {
		    var value = $.trim($(this).val());
		    var uri = '/resfest/poster_search.php?param=' + encodeURIComponent(value) + '&lang=' + lang;
			$('#table-container').load(uri, {dataType: 'html'});
		} else {
			$('#table-container').html('');
		}
	})
});
