jQuery(document).ready(function() {

		$.ajax({
    			url: '/2008/include/lm/ajax.key_suggest.offerta.php',
    			dataType: "json",
    			success: function(data) {
					//alert(data);
					$( "#tags_suggest_ricerca_offerta" ).autocomplete({ source: data, minLength: 3 });
        		}//chiusura ajax success
    	});//chiusura ajax
		

/*
$( "#tags_suggest_ricerca_offerta" ).autocomplete({ source: 
												  
												  
function ( request, response ) {												  
		$.ajax({
    			url: '/2008/include/lm/ajax.key_suggest.offerta.php',
    			dataType: "json",
    			success: function(data) {
					//alert(data);
					response(data)
					return data;
        		}//chiusura ajax success
    	});//chiusura ajax
},
												  
												  
												  
												  
												  
												  
												  
												  
												  
												  minLength: 3 });


*/



});

