﻿/// <reference path="../jquery/jquery-1.5.1.min.js" />
/// <reference path="../jquery/jquery-ui-1.8.10.custom.min.js" />

var site = {
    checkout: {
        index: null,
        shipping: null,
        payment: null,
        summary: null,
        thankyou: null
    },
    
    home: null,
    shoppingCart: null,
    productList: null,
    productDetail: null,
    account: {},
    enums: { shoppingCart: null }
}

var spider = {
    indicator: null,
    validation: null
}

site.enums.shoppingCart = {
    'single': 1,
    'multiple': 2
}
