///
/// Property object
/// Used on neighborhood search page
///

function Result (a, c, s, z, i, t, d) {
	this.address		= a;
	this.city			= c;
	this.state			= s;
	this.zip			= z;
	this.pbs_id			= i;
	this.title			= (t == '') ? 'Classified Ad' : t;
	this.details		= d;
	//this.preview_img	= img;
	
	this.latlong		= null;
}