function formatItem(row) {
	return row[0];
}
	
function formatResult(row) {
	return row[0];
}


jQuery().ready(function() {

	jQuery("#recherche_biere").autocomplete("/ajax/biere.php", {width: 300,
		multiple: true,
		matchContains: true,
		formatItem: formatItem,
		formatResult: formatResult
	}).flushCache();
	jQuery("#recherche_biere").result(function(event, data, formatted) {
		window.location = '/bieres/' + data[1] + '/';
	});

	jQuery("#recherche_brasseur").autocomplete("/ajax/brasseur.php", {width: 300,
		multiple: true,
		matchContains: true,
		formatItem: formatItem,
		formatResult: formatResult
	}).flushCache();
	jQuery("#recherche_brasseur").result(function(event, data, formatted) {	
		window.location = '/brasseurs/' + data[1] + '/';
	});

});