function Shelter(shelter_xml) {
	//this.type = shelter_xml.getAttribute("type");
	this.id = shelter_xml.getAttribute("id");
	this.type = shelter_xml.getAttribute("type");
	this.official = shelter_xml.getAttribute("official");
	this.fee = shelter_xml.getAttribute("fee");
	this.capacity = shelter_xml.getAttribute("capacity");
	this.near_at = shelter_xml.getAttribute("near_at");
	this.marker_icon_id = shelter_xml.getAttribute("marker_icon_id");
	this.zoom = shelter_xml.getAttribute("zoom");
	this.name = shelter_xml.getAttribute("name");
	
	this.point = new GLatLng(parseFloat(shelter_xml.getAttribute("lat")), parseFloat(shelter_xml.getAttribute("lng")));
} 
	
	
	
	

	
