StreetSearch_class = Class.create();
StreetSearch_class.prototype = (new AjaxPro.AjaxClass()).extend({
	GetMatchingStreets: function(partialLocation, areaId) {
		return this.invoke("GetMatchingStreets", {"partialLocation":partialLocation, "areaId":areaId}, this.GetMatchingStreets.getArguments().slice(2));
	},
	initialize: function() {
		this.url = '/ajaxpro/FindANewHome.SoldSearchPage,FANHWeb.ashx';
	}
});
StreetSearch = new StreetSearch_class();

