$('document').ready(function () {
	$('#productSearch').fayt({
		triggerLength	: 3,
		ajaxLocation	: '/kuluttajapalaute/findusfeedbackresults',
		ajaxEnabled		: true,
		selectItem		: select,
		domInsertType	: 'replace',
		resultsTarget	: $('div#faytWrapper')
	});
	
	function select (item) {
		item = item.replace('&amp;', '&');
		$('#productSearch').val(item);
	}
});