// Mapping Software (regions)
//
// © 2007 Gary B. Little
//
// May 24, 2007
//

var regionDB = [];

function loadRegions() {

regionDB[1] = new regionRecord( "BC Lower Mainland", 49.677, -123.695, 8 );

}

// Constructor for regionRecord class:
//
function regionRecord( regionName, latitude, longitude, zoomLevel ) {

	this.theRegionName = regionName;
	this.theLocation = new GLatLng(latitude, longitude);
	this.theZoomLevel = zoomLevel;
	return this;
}