
function formatItem(row) {
			return "<a href='http://www.mrcouponcodes.com/discounts/" + row[0] + "'/> " + row[0].split(".")[0] + "</a>";
		}
		



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

// if coming from an AJAX call, let's use the CityId 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 was: " + sValue);
}

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




function setPath(path) {
	$("#navSearchField").autocomplete(
	path+"/coupon-codes/retlist.php",
	{
		delay:1,
		minChars:1,
		matchSubset:1,
		matchContains:1,
		cacheLength:10,
		formatItem:function(t) {
			return t[0];
		}
	}
);



}

