//--------------------------------------------------------------------------------ZIP CODE ARRAY CONSTRUCTOR
function zipCode(island_id, town, zip, xHCoord, yHCoord, xFCoord, yFCoord, zFCoord){
	this.island_id = island_id;
	this.town = town;
	this.zip = zip;
	
	this.xHCoord = xHCoord;
	this.yHCoord = yHCoord;
	
	this.xFCoord = xFCoord;
	this.yFCoord = yFCoord;
	this.zFCoord = zFCoord;
}

//--------------------------------------------------------------------------------RANK LISTING ARRAY CONSTRUCTOR
function listing(id, zip, name, url, imageurl, caption){
	this.id = id;
	this.zip = zip;
	this.name = name;
	this.url = url;
	this.imageurl = imageurl;
	this.caption = caption;
}

//--------------------------------------------------------------------------------DEFAULT REGION ARRAY CONSTRUCTOR
function region(regionId, regionName, imageurl, caption){
	this.regionId = regionId;
	this.regionName = regionName;
	this.imageurl = imageurl;
	this.caption = caption;
}