﻿
// variables
var page;
var qlocation = new geo_location();
var navSection;
var bizloc_closeddates;
var bizloc_closedweekdays;
var bizloc_advance_notice_unit;
var bizloc_advance_notice_length;
var bizloc_advance_notice_max_unit;
var bizloc_advance_notice_max_length;
var bizloc_first_available_date;
var bizloc_first_available_time;
var Sunday = 0, Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6;
var cartSource = "";
var recordActions = true;


// classes
function geo_location() {
    this.user_input = "";
    this.latitude = new Number();
    this.longitude = new Number();
    this.postal_code = "";
    this.city = "";
    this.state_region = "";
    this.country = "";
    this.location_type = "";
    this.formatted_address = "";
    this.location_url_format = "";
    this.item_id = "";
}

function user_location() {
    this.latitude = new Number();
    this.longitude = new Number();
    this.postal_code = "";
    this.city = "";
    this.state_region = "";
    this.country = "";
    this.formatted_address = "";
    this.ip = "";
}

// lists
var monthNames = new Array(12);
monthNames[0] = "January";
monthNames[1] = "February";
monthNames[2] = "March";
monthNames[3] = "April";
monthNames[4] = "May";
monthNames[5] = "June";
monthNames[6] = "July";
monthNames[7] = "August";
monthNames[8] = "September";
monthNames[9] = "October";
monthNames[10] = "November";
monthNames[11] = "December";
