﻿var locations = new Array();

function locationObj()
{
    this.name = "";
    this.time = "";
    this.address1 = "";
    this.address2 = "";
    this.city = "";
    this.state = "";
    this.zip = "";
    this.phone = "";
    this.fax = "";
    this.contactname = "";
    this.contactemail = "";
    this.infoageurl = "";
    this.latitude = "";
    this.longitude = "";
}

var l1 = new locationObj();
l1.name = "A Moment Like This Decorating";
l1.time = "";
l1.address1 = "7633 Dayton Pk";
l1.city = "Hixson";
l1.state = "TN";
l1.zip = "37343";
l1.phone = "423.305.1485";
l1.fax = "423.842.6902";
l1.contactname = "Contact Us";
l1.contactemail = "starbrite1960@hotmail.com";
l1.infoageurl = "";
l1.latitude = "35.198766";
l1.longitude = "-85.240030";
locations[0] = l1;
