if (typeof Effect == 'undefined') 
	throw("property.js requires including script.aculo.us' effects.js library!");

var property = Class.create();
property.prototype = {
	//  Setup the Variables
	id: null,
	latitude: null,
	longitude: null,
	county: null,
	mapOrder: null,
	marker: null,
	info: null,
	
	//  Initialize the property
	initialize: function(id, latitude, longitude, county, mapOrder, info) {
		this.id = id;
		this.latitude = latitude;
		this.longitude = longitude;
		this.county = county;
		this.info = info;
		this.mapOrder = mapOrder;
	},
	
	setMarker: function(marker) {
		this.marker = marker;
	},
	
	displayInfo: function() {
		this.marker.openInfoWindowHtml(this.info);
	}
}
	