


(function (window, $, bam) {

    bam.env = bam.env || {};
    bam.env.host = bam.env.host || {};

    $.extend(bam.env.host, {

        /**
         * Returns base url for the CDN server
         *
         * @returns {String} 
         */
        getWebCacheServerURL : function () {
            return "http://mlb.mlb.com";
        },

        /**
         * Returns base url for the secure server
         *
         * @returns {String} 
         */
        getSSLServerURL : function () { 
            return "https://secure.mlb.com";
        },

        /**
         * Returns base url for the origin server
         *
         * @returns {String} 
         */
        getServerURL : function () {
            return "http://www.mlb.com"; 
        }
        
    });

}(this, this.jQuery, this.bam));


