QuickSearch_class = Class.create();
QuickSearch_class.prototype = (new AjaxPro.AjaxClass()).extend({
	GetMatchingLocations: function(partialLocation) {
		return this.invoke("GetMatchingLocations", {"partialLocation":partialLocation}, this.GetMatchingLocations.getArguments().slice(1));
	},
	initialize: function() {
		this.url = '/ajaxpro/FindANewHome.RefineSearch,FANHWeb.ashx';
	}
});
QuickSearch = new QuickSearch_class();

