﻿/// <reference path="../jquery/jquery-1.3.2.js" />
//plik ze __stałymi__ wykorzystywanymi w skryptach w całym serwisie

//#region poweradeConsts
function poweradeConsts() {
    this.poweradePages = new poweradePagesConsts();
    this.jQuerySpeeds = new jQuerySpeedsConsts();
    this.debug = true; //@Todo - na produkcji musi byc false :D
    this.redirectCookieName = "__przekieruj";
}
//#endregion

//#region poweradePagesConsts
function poweradePagesConsts() {
    this.defaultPage = "/Default.aspx";
    this.newsPage = "/Aktualnosci.aspx";
    this.friendsPage = "/Znajomi.aspx"
}
//#endregion

//#region jQuerySpeedsConsts
function jQuerySpeedsConsts() {
    this.slow = "slow";
    this.normal = "normal";
    this.fast = "fast";
}
//#endregion


