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