/**
 *
 * @author Ferenc Radius
 * @class core.AtlConfiguration
 */
var AtlConfiguration = function()
{

    this.debug = false;






    // content directory
    this.contentDirectory = "./content/";

    this.OWN_GOAL_USER_GUID = "5b46193d-a713-45fb-8597-7ae2227b1c67";

    /**
     * The max time for an interval
     *
     * @property intervalTimeout
     */
    this.intervalTimeout = 5000;
    this.intervalTimeoutRedirect = "500.aspx";

    this.version = "2.7";

    this.baseUrl              = window.location.href.split('#')[0];
    this.imgUrl               = "https://services.teamlink.nl/Image?name=";
    this.flashCommunicatorUrl = "http://widget.teamlink.nl/Content/index_atl.html?u=" + this.baseUrl;
    this.serviceUrl           = window.location.protocol+"//"+window.location.host;






    /**
     *
     */
    this.hyvesConsumerKey       = "NjU4OF_7zD21XTR8cQ-JRy_uaM4G";
    this.hyvesConsumerSecret    = "NjU4OF8-tAdsrDbUQRqHXrz4SK28";
    this.hyvesCallbackUrl       = this.baseUrl +"/hyves_callback.html";

    /**
     * Additional options used for cookies
     * @property loaderTimeout
     */
    this.cookieExpire       = 365;

    this.googleTracker      = "UA-9816972-1";
    this.url                = '/webservices/widgetwebservice.asmx/';
    this.urlRegistration    = '/webservices/KNVB.v.1.2.asmx/';
    this.urlTeamlink        = '/webservices/TeamSite.v.1.1.asmx/';
    this.urlProfile         = '/webservices/Profiles.v.1.0.asmx/';
    this.urlStats           = '/webservices/Statistics.v.1.0.asmx/';
    this.urlContact         = '/webservices/Contact.v.1.0.asmx/';
    this.urlAuthentication  = '/webservices/Authentication.v.1.0.asmx/';
    this.urlEvents          = '/webservices/Events.v.1.0.asmx';






};

