var kRegionCount = 1;
var regionDB = new Array( kRegionCount );

regionDB[1] = new regionRecord( "North America", 44.58, -80.94, 5);


// Constructor for regionRecord class:
//
function regionRecord( regionName, latitude, longitude, zoomLevel ) {

	this.theRegionName = regionName;
	this.theLocation = new GLatLng(latitude, longitude);
	this.theZoomLevel = zoomLevel;
	return this;
}
