var Organization = function () {
	Location.apply(this, arguments);
}

Organization.prototype = new Location();

Organization.properties = [
	'id',
	'name',
	'contact_name',
	'email',
	'private_email',
	'url',
	'reservation_url',
	'listing_url',
	'phone',
	'toll_free_phone',
	'fax',
	'physical_address',
	'mailing_address',
	'latitude',
	'longitude',
	'description',
	'date_created',
	'date_modified',
	'notes',
	'is_seasonal',
	'is_accessible',
	'is_french',
	'is_environmental_leader',
	'aaa_rating'
];

