﻿/**
 * static object that handles page logic
 * @class
 * @constructor
 * @param {jQuery} $ Reference to the jQuery object
 */
var LocationMain = function($){

    /**
     * @namespace Private methods and variables
     */
    var priv = {};
    
    /** @scope Main */
    return {
    
        /**
         * Initializes the logic for the current page
         * to be called on $(document).ready
         */
        OnReady: function(){
            locDetails.OnReady();
        }
    };
}(jQuery);

