	/* Fonction de recherche dynamique */
	(function($){
	    $.fn.searchable = function(){
	        return this.each(function(){
	            var targetTable = this;
	            /*$('<input style="margin-bottom: 5px; " class="inputbox"/>').insertBefore(targetTable).before('Affiner la recherche:&nbsp;').keyup(function(event){*/
	            $('#searchMore').keyup(function(event){
	                event.preventDefault();
	                var c = event.keyCode;
	                // Check for conditions to trigger auto-search
	                if ( (c == 8) || (c == 46) || (c == 109 || c == 189) || (c >= 65 && c <= 90) || (c >= 48 && c <= 57) ) {
	                    var keyword = new RegExp($(this).val(), "i");
	                    $('tbody tr', targetTable).each(function(){
	                        var $tr = $(this);
	                        $('td', $tr).filter(function(){
	                            return keyword.test($(this).html());
	                        }).length ? $tr.show() : $tr.hide();
	                    });
	                }
	            });
	        });
	    };
	})(jQuery);
	/* Fonction de recherche dynamique */