﻿var home = {
    _boxInitialized: false,
    Initialize: function(loadBoxes) {
        // İlk açılış animasyonları ve işlemleri
        $('.header, .headerShadow').animate({ top: '+=87px' }, function() {
        if (!home._boxInitialized) {
                if(loadBoxes) box.Initialize();
                home._boxInitialized = true;
            }
        });
    },
    OpenPage: function(name) {
        setTimeout("box.Destroy(function() { page.Initialize('" + name + "') });", 500);
    }
}
