﻿/*
----------------------------------------------------------
	Initialize Namespace
----------------------------------------------------------
*/
window.Websajt = {
    Utils: {},
    Form: {},
    Pages: {
        Global: {},
        Faqpage: {},
        Startpage: {},
        Categorypage: {},
        Contactpage: {},
        Standardpage: {},
        SignupConsumer: {},
        SignupConsumerCampaign: {},
        SignupCompany: {},
        Newspage: {},
        SearchResult: {},
        MyPages: {},
        Campaign: {}
    },
    Plugins: {},
    Effects: {}
};

$(document).ready(function() {
    Websajt.IE6 = false;
    Websajt.IE = false;
    if (($.browser.msie) && (parseInt($.browser.version) < 7)) {
        Websajt.IE6 = true;
    }
    if (($.browser.msie)) {
        Websajt.IE = true;
    }
    if (!IS_EDIT_MODE) {
        sIFR.fixHover = true;
        sIFR.activate(sIFR_DEFAULT);
    }
    Websajt.Pages.Global.sIFRH1Login();
    Websajt.Pages.Global.sIFRH1();
    Websajt.Pages.Global.sIFRH2();
    Websajt.Pages.Global.sIFRH2MyPages();
    Websajt.Pages.Global.RenderBoxType1();
    Websajt.Pages.Global.RenderBoxType2();
    Websajt.Pages.Global.RenderBoxType3();
    Websajt.Pages.Global.RenderBoxType4();
    Websajt.Pages.Global.RenderBoxType5();
    Websajt.Pages.Global.Footer();
    Websajt.Pages.Global.CheckSubMenu();
    Websajt.Utils.RenderTable();
    Websajt.Form.GlobalActions();
});