$('document').ready(function(){

	var formatAirport = function(row) {
		return "<div class=\"ac_line\"><strong>"+row[1]+"</strong>, "+row[2]+" - "+row[3]+" ("+row[4]+")</div>";
	}

	$('#fromcity,#tocity').autocomplete('airportFinder.php',{
		delay:300,
		minChars:3,
		matchSubset:1,
		matchContains:0,
		cacheLength:10,
		autoFill:false,
		maxItemsToShow:10,
		width:'auto',
		extraParams:{},
		formatItem:formatAirport
	});

	var formatCity = function(row) {
		return "<div class=\"ac_line\"><strong>"+row[1]+"</strong>, "+row[2]+"</div>";
	}

	$('#city').autocomplete('cityFinder.php',{
		delay:300,
		minChars:3,
		matchSubset:1,
		matchContains:0,
		cacheLength:10,
		autoFill:false,
		maxItemsToShow:10,
		width:'auto',
		extraParams:{},
		formatItem:formatCity
	});

});