$(function(){
	$('#city_search_home').autocomplete('/ajax/city_search', {
		minChars: 2,
		max: 15,
		delay: 100,
		autoFill: false,
		mustMatch: false,
		matchContains: false,
		scrollHeight: 220,
		width: 400,
		formatItem: function(row, i, total) {
			if (row[1] != undefined && row[1] != '')
			{
				return row[0] + ' (' + row[1] + ')';
			} else {
				return row[0];
			}
		}
	});
	
	$('#city_search_home_submit').click(function(){
		$(this).closest('form').submit();
		return false;
	});
});
