var Country = function(name, description, latitude, longitude, zoom) {
	this.type = "COUNTRY";
	this.states = [];
	this.name = name;
	this.description = description;
	this.latitude = latitude;
	this.longitude = longitude;
	this.zoom = zoom;
	this.children = [];
}

Country.prototype = new Space();