﻿var lastAddress = 0;
var locations = new Array();

function locationObj()
{
    this.name = "";
    this.address1 = "";
    this.city = "";
    this.state = "";
    this.zip = "";
    this.phone = "";
    this.email = "";
}

var l1 = new locationObj();
l1.name = "Covenant Presbyterian Church";
l1.address1 = "8451 E. Brainerd Road";
l1.city = "Chattanooga";
l1.state = "TN";
l1.zip = "37421";
l1.phone = "423.899.5377";
l1.email = "office@covenantchattanooga.org";
locations[0] = l1;
