$('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:6,
		width:'auto',
		extraParams:{'language':'en'},
		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:6,
		width:'auto',
		extraParams:{'language':'en'},
		formatItem:formatCity
	});

});