$(document).ready(function(){
$("#autoComplete").autocomplete("/members/autoComplete",
{
minChars: 2,
cacheLength: 10,
onItemSelect: selectItem,
onFindValue: findValue,
formatItem: formatItem,
 autoFill: false
 });
});

function selectItem(li) {
	findValue(li);
}

function findValue(li) {
	if( li == null ) return alert("No match!");

// if coming from an AJAX call, let's use the product id as the value
	if( !!li.extra ) var sValue = li.extra[0];

	// otherwise, let's just display the value in the text box
else var sValue = li.selectValue;

//alert("The value you selected was1: " + sValue);
//alert(li.extra[4]);
$('#detailed-information').hide('normal'),
$('#detailed-information').load('/members/viewright/'+li.extra[4]),
$('#detailed-information').fadeIn("slow");

}

function formatItem(row) {
	if(row[1] == undefined) {
		return row[0];
	}
	else {
		
		return  '<div class="autocomplete-name">'+row[0]+' '+row[1]+'</div>'+row[2] +'<div class="autocomplete-additional">Започнал: '+row[3]+'<br/>E-mail:'+row[4]+'</div>';
	}
}

